Open eyeseast opened 7 years ago
I needed to add some processing for a current project, so I tried overriding Copydoc.parse and calling super(). Got TypeError: must be type, not classobj.
Copydoc.parse
super()
TypeError: must be type, not classobj
Is there any reason CopyDoc doesn't (or shouldn't) inherit from object?
CopyDoc
object
I needed to add some processing for a current project, so I tried overriding
Copydoc.parse
and callingsuper()
. GotTypeError: must be type, not classobj
.Is there any reason
CopyDoc
doesn't (or shouldn't) inherit fromobject
?