diff --git a/cle/backends/elf/compilation_unit.py b/cle/backends/elf/compilation_unit.py index 1a568a81..8a94b55c 100644 --- a/cle/backends/elf/compilation_unit.py +++ b/cle/backends/elf/compilation_unit.py @@ -1,5 +1,5 @@ import os.path -from typing import Dict, List, Tuple, Generator +from typing import Dict, Generator, List, Tuple from cle.address_translator import AT diff --git a/cle/backends/elf/elf.py b/cle/backends/elf/elf.py index a35acce5..57bd211f 100644 --- a/cle/backends/elf/elf.py +++ b/cle/backends/elf/elf.py @@ -3,7 +3,7 @@ import os import xml.etree.ElementTree from collections import OrderedDict, defaultdict -from typing import Dict, List, Optional, Tuple, TYPE_CHECKING +from typing import TYPE_CHECKING, Dict, List, Optional, Tuple import archinfo import elftools diff --git a/cle/backends/elf/variable.py b/cle/backends/elf/variable.py index 19eaf44c..d413c620 100644 --- a/cle/backends/elf/variable.py +++ b/cle/backends/elf/variable.py @@ -1,5 +1,5 @@ from enum import Enum -from typing import Optional, List, Tuple, Any, TYPE_CHECKING +from typing import TYPE_CHECKING, List, Optional, Tuple from elftools.dwarf.die import DIE