Skip to content

Commit 874d2e3

Browse files
committed
Usw == version check
1 parent 6c4d78b commit 874d2e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-data/unit/check-final.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,7 @@ class A:
11341134
a: Final[ClassVar[int]] # E: Variable should not be annotated with both ClassVar and Final
11351135
b: ClassVar[Final[int]] # E: Final can be only used as an outermost qualifier in a variable annotation
11361136
c: ClassVar[Final] = 1 # E: Final can be only used as an outermost qualifier in a variable annotation
1137-
[out version<3.13]
1137+
[out version==3.12]
11381138

11391139
[case testFinalClassWithAbstractMethod]
11401140
from typing import final

0 commit comments

Comments
 (0)