Skip to content

Commit 411eaae

Browse files
committed
Remove unused imports
1 parent 36874c7 commit 411eaae

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

uncompyle6/semantics/pysource.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,17 +84,14 @@
8484
from uncompyle6.semantics.parser_error import ParserError
8585

8686
from uncompyle6.show import (
87-
maybe_show_asm,
8887
maybe_show_ast,
8988
)
9089

9190
if PYTHON3:
92-
from itertools import zip_longest
9391
from io import StringIO
9492
minint = -sys.maxsize-1
9593
maxint = sys.maxsize
9694
else:
97-
from itertools import izip_longest as zip_longest
9895
from StringIO import StringIO
9996
minint = -sys.maxint-1
10097
maxint = sys.maxint

0 commit comments

Comments
 (0)