Remove inherit from object as it's no longer needed to determine new-style classes

This commit is contained in:
Toshio Kuratomi 2014-10-15 19:37:29 -04:00
commit eafa718be1
14 changed files with 14 additions and 14 deletions

View file

@ -19,7 +19,7 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
class AnsibleBaseYAMLObject(object):
class AnsibleBaseYAMLObject:
'''
the base class used to sub-class python built-in objects
so that we can add attributes to them during yaml parsing