We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 247d8a0 + c7199a6 commit 32253d6Copy full SHA for 32253d6
chess/pgn.py
@@ -143,7 +143,7 @@ class SkipType(enum.Enum):
143
144
145
class TimeControlType(enum.Enum):
146
- UNKNOW = 0
+ UNKNOWN = 0
147
UNLIMITED = 1
148
STANDARD = 2
149
RAPID = 3
@@ -172,7 +172,7 @@ class TimeControl:
172
"""
173
174
parts: list[TimeControlPart] = dataclasses.field(default_factory=list)
175
- type: TimeControlType = TimeControlType.UNKNOW
+ type: TimeControlType = TimeControlType.UNKNOWN
176
177
178
class _AcceptFrame:
0 commit comments