erocarrera / pefile

pefile is a Python module to read and work with PE (Portable Executable) files
MIT License
1.83k stars 516 forks source link

More readable calls to superclass #393

Closed j-t-1 closed 3 months ago

j-t-1 commented 5 months ago

Example: super(StructureWithBitfields, self).unpack(data) ---> super().unpack(data)

erocarrera commented 3 months ago

Thanks!