Skip to content

Commit ed0cc78

Browse files
authored
Removes unused mypyc imports (#11237)
1 parent 209a719 commit ed0cc78

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

mypyc/common.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from mypy.util import unnamed_function
2-
import sys
32
from typing import Dict, Any, Optional, Tuple
43
import sys
54

mypyc/irbuild/prepare.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
from typing import List, Dict, Iterable, Optional, Union, DefaultDict, NamedTuple, Tuple
1515

1616
from mypy.nodes import (
17-
MypyFile, TypeInfo, FuncDef, ClassDef, Decorator, OverloadedFuncDef, MemberExpr, Var,
18-
Expression, SymbolNode, ARG_STAR, ARG_STAR2, CallExpr, Decorator, Expression, FuncDef,
19-
MemberExpr, MypyFile, NameExpr, RefExpr, TypeInfo,
17+
ClassDef, OverloadedFuncDef, Var,
18+
SymbolNode, ARG_STAR, ARG_STAR2, CallExpr, Decorator, Expression, FuncDef,
19+
MemberExpr, MypyFile, NameExpr, RefExpr, TypeInfo
2020
)
2121
from mypy.types import Type, Instance, get_proper_type
2222
from mypy.build import Graph

0 commit comments

Comments
 (0)