Remove redundant object subclassing

This commit is contained in:
Nikolaus Waxweiler 2019-10-12 13:44:03 +01:00
parent b54e11c1a5
commit 94c3aff991

View File

@ -120,7 +120,7 @@ class Data:
return "%s(%s)" % (self.__class__.__name__, repr(self.data))
class PlistTarget(object):
class PlistTarget:
""" Event handler using the ElementTree Target API that can be
passed to a XMLParser to produce property list objects from XML.
It is based on the CPython plistlib module's _PlistParser class,