Skip to content

Commit

Permalink
Change typing star import to explicit imports
Browse files Browse the repository at this point in the history
  • Loading branch information
julianneswinoga committed Jul 29, 2023
1 parent 0987ebd commit 9f1c4c8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tracex_parser/events.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import *
from typing import Optional, Dict, List, Union, Any, ClassVar

from .helpers import TraceXEventException, CStruct, TextColour

Expand Down
2 changes: 1 addition & 1 deletion tracex_parser/file_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import argparse
import copy
import sys
from typing import *
from typing import Tuple, Optional, Dict, List

from .helpers import TraceXParseException, CStruct, TextColour
from .events import TraceXEvent, convert_events
Expand Down
2 changes: 1 addition & 1 deletion tracex_parser/helpers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import struct
from typing import *
from typing import Tuple, List


class TraceXBaseException(Exception):
Expand Down
2 changes: 1 addition & 1 deletion trx_to_excel.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/python3

import argparse
from typing import *
from typing import Tuple, Optional, Dict, List, Union

import xlsxwriter
from colorhash import ColorHash
Expand Down

0 comments on commit 9f1c4c8

Please sign in to comment.