Skip to content

Commit

Permalink
Merge pull request #413 from j-t-1/consistency
Browse files Browse the repository at this point in the history
Replace base class name with super()
  • Loading branch information
erocarrera authored Aug 26, 2024
2 parents 0a2eb88 + 3830915 commit d92c698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -1138,7 +1138,7 @@ def __init__(self, *argl, **argd):
self.VirtualAddress = None
self.SizeOfRawData = None
self.Misc_VirtualSize = None
Structure.__init__(self, *argl, **argd)
super().__init__(*argl, **argd)
self.PointerToRawData_adj = None
self.VirtualAddress_adj = None
self.section_min_addr = None
Expand Down

0 comments on commit d92c698

Please sign in to comment.