Remove unused import
[pyelftools.git] / examples / elfclass_address_size.py
index d6b19d3d40e706a4417396c716eaf22f64aa879a..ac2bfaadcc3e728249faca14d85c8f0cf9e4523b 100644 (file)
 from __future__ import print_function
 import sys
 
-# If elftools is not installed, maybe we're running from the root or examples
-# dir of the source distribution
-try:
-    import elftools
-except ImportError:
-    sys.path.extend(['.', '..'])
+# If pyelftools is not installed, the example can also run from the root or
+# examples/ dir of the source distribution.
+sys.path[0:0] = ['.', '..']
 
 from elftools.elf.elffile import ELFFile