Skip to content

Commit

Permalink
Reorder member initialization
Browse files Browse the repository at this point in the history
For aesthetics, functionality unchanged.
  • Loading branch information
j-t-1 authored Dec 5, 2024
1 parent 4b3b1e2 commit 7896538
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 @@ -1144,11 +1144,11 @@ def __init__(self, *args, **kwargs):
self.pe = kwargs["pe"]
del kwargs["pe"]

super().__init__(*args, **kwargs)
self.PointerToRawData = None
self.VirtualAddress = None
self.SizeOfRawData = None
self.Misc_VirtualSize = None
super().__init__(*args, **kwargs)
self.PointerToRawData_adj = None
self.VirtualAddress_adj = None
self.section_min_addr = None
Expand Down

0 comments on commit 7896538

Please sign in to comment.