We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19249f9 commit d245e75Copy full SHA for d245e75
mypy/checkexpr.py
@@ -36,7 +36,6 @@
36
from mypy.constraints import get_actual_type
37
from mypy.checkstrformat import StringFormatterChecker
38
from mypy.expandtype import expand_type
39
-import mypy.checkexpr
40
41
from mypy import experiments
42
@@ -69,7 +68,7 @@ def __init__(self,
69
68
"""Construct an expression type checker."""
70
self.chk = chk
71
self.msg = msg
72
- self.strfrm_checker = mypy.checkexpr.StringFormatterChecker(self, self.chk, self.msg)
+ self.strfrm_checker = StringFormatterChecker(self, self.chk, self.msg)
73
74
def visit_name_expr(self, e: NameExpr) -> Type:
75
"""Type check a name expression.
0 commit comments