Skip to content

Commit

Permalink
Fix DictionaryObject.__init__() (py-pdf#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
S-071 committed Jun 21, 2020
1 parent a3deffb commit 23412b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypdf/generic.py
Expand Up @@ -734,7 +734,7 @@ def readFromStream(stream, pdf):

class TreeObject(DictionaryObject):
def __init__(self):
DictionaryObject.__init__()
DictionaryObject.__init__(self)

def hasChildren(self):
return '/First' in self
Expand Down

0 comments on commit 23412b6

Please sign in to comment.