Skip to content

Commit f1fc05d

Browse files
committed
ruff fixes
1 parent 664e833 commit f1fc05d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cle/backends/elf/compilation_unit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os.path
2-
from typing import Dict, List, Tuple, Generator
2+
from typing import Dict, Generator, List, Tuple
33

44
from cle.address_translator import AT
55

cle/backends/elf/elf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44
import xml.etree.ElementTree
55
from collections import OrderedDict, defaultdict
6-
from typing import Dict, List, Optional, Tuple, TYPE_CHECKING
6+
from typing import TYPE_CHECKING, Dict, List, Optional, Tuple
77

88
import archinfo
99
import elftools

cle/backends/elf/variable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from enum import Enum
2-
from typing import Optional, List, Tuple, Any, TYPE_CHECKING
2+
from typing import TYPE_CHECKING, List, Optional, Tuple
33

44
from elftools.dwarf.die import DIE
55

0 commit comments

Comments
 (0)