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 392a37c commit 0bb0886Copy full SHA for 0bb0886
mypy/fastparse.py
@@ -175,7 +175,9 @@ def p() -> AST:
175
else (
176
s[:-1]
177
if is_defective_version
178
- and hasattr(tokenize, "FSTRING_MIDDLE") #technically redundant as all the defective versions have this, but we'd like to appease the typechecker here
+ and hasattr(
179
+ tokenize, "FSTRING_MIDDLE"
180
+ ) # technically redundant as all the defective versions have this, but we'd like to appease the typechecker here
181
and t == tokenize.FSTRING_MIDDLE
182
and s.startswith("\\")
183
and s.endswith("{")
0 commit comments