refactor: removed DataReuser

This commit is contained in:
Dobin
2024-02-25 20:28:57 +00:00
parent 462f23d8cf
commit 5301ef7b2e
5 changed files with 25 additions and 146 deletions
-1
View File
@@ -27,7 +27,6 @@ class SuperPe():
def get_section_by_name(self, name: str) -> PeSection:
for section in self.pe_sections:
#print("{} {}".format(section.name, name))
if section.name == name:
return section
return None