Fix two more mypyc issues with mypyc v1.2.0. (#3648)

This commit is contained in:
Yilei "Dolee" Yang 2023-04-14 14:05:08 -07:00 committed by GitHub
parent f265ff5bcd
commit 02f81c6995
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -790,7 +790,7 @@ def is_line_short_enough( # noqa: C901
# store the leaves that contain parts of the MLS
multiline_string_contexts: List[LN] = []
max_level_to_update = math.inf # track the depth of the MLS
max_level_to_update: Union[int, float] = math.inf # track the depth of the MLS
for i, leaf in enumerate(line.leaves):
if max_level_to_update == math.inf:
had_comma: Optional[int] = None

View File

@ -181,9 +181,9 @@ def whitespace(leaf: Leaf, *, complex_subscript: bool) -> str: # noqa: C901
`complex_subscript` signals whether the given leaf is part of a subscription
which has non-trivial arguments, like arithmetic expressions or function calls.
"""
NO: Final = ""
SPACE: Final = " "
DOUBLESPACE: Final = " "
NO: Final[str] = ""
SPACE: Final[str] = " "
DOUBLESPACE: Final[str] = " "
t = leaf.type
p = leaf.parent
v = leaf.value