Skip to content

Commit 5fbf98f

Browse files
committed
Fix type annotations.
Change-Id: I6b7b769cf0ba17fc7188518cdcec3085f59760b0
1 parent c1c2b03 commit 5fbf98f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_content.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ class ADataClassWithList:
6767

6868

6969
class Choices(enum.Enum):
70-
A: int = "a"
71-
B: int = "b"
72-
C: int = "c"
73-
D: int = "d"
70+
A = "a"
71+
B = "b"
72+
C = "c"
73+
D = "d"
7474

7575

7676
@dataclasses.dataclass

0 commit comments

Comments
 (0)