Skip to content

Commit 69fea34

Browse files
Daniil KalininDaniil Kalinin
authored andcommitted
conformance: fix missing(?) # E error comment in dataclasses_inheritance.py
1 parent ef75648 commit 69fea34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conformance/tests/dataclasses_inheritance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class DC4(DC3):
4444
class DC5:
4545
# This should generate an error because a default value of
4646
# type list, dict, or set generate a runtime error.
47-
x: list[int] = []
47+
x: list[int] = [] # E
4848

4949

5050
@dataclass

0 commit comments

Comments
 (0)