Skip to content

Commit

Permalink
remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
sgnes committed Jan 30, 2025
1 parent e7929e4 commit 83acc51
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions elfwrapper/elf_wrapper.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
import re
from elftools.elf.sections import NoteSection, SymbolTableSection
from elftools.elf.sections import SymbolTableSection
from elftools.elf.elffile import ELFFile
from elftools.dwarf.descriptions import (
describe_reg_name, describe_attr_value, set_global_machine_arch,
describe_CFI_instructions, describe_CFI_register_rule,
describe_CFI_CFA_rule,
describe_attr_value,
)
from elftools.elf.gnuversions import (
GNUVerSymSection, GNUVerDefSection,
GNUVerNeedSection,
)
from elftools.elf.dynamic import DynamicSection, DynamicSegment
from elftools.elf.dynamic import DynamicSection
import logging
from logging.config import fileConfig
from elfwrapper.elf_exception import ParseSequenceError,UnSupportedElfFormatError
from elfwrapper.utility import objdict

Expand Down

0 comments on commit 83acc51

Please sign in to comment.