Skip to content

Commit 1ca0a7b

Browse files
committed
Fix typo
1 parent 504e6cb commit 1ca0a7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mypy/typeanal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2528,7 +2528,7 @@ def detect_diverging_alias(node: TypeAlias, target: Type) -> bool:
25282528
# Fast path: this is not a recursive alias at all.
25292529
return False
25302530
# Note we only cache positive case, caching negative case is risky, as this type alias
2531-
# (or importantly any other alias it uses) may be not ready yet.
2531+
# (or more importantly any other alias it uses) may be not ready yet.
25322532
node._is_recursive = True
25332533
visitor = DivergingAliasDetector({node})
25342534
_ = target.accept(visitor)

0 commit comments

Comments
 (0)