Skip to content

Commit

Permalink
ruff fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ltfish committed Apr 4, 2023
1 parent 664e833 commit f1fc05d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cle/backends/elf/compilation_unit.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion cle/backends/elf/elf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cle/backends/elf/variable.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit f1fc05d

Please sign in to comment.