Skip to content

Commit

Permalink
Undo member renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkZH committed Feb 21, 2024
1 parent 2269d6a commit 05da598
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chess/pgn.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,13 +197,13 @@ class GameNode(abc.ABC):
variations: List[ChildNode]
"""A list of child nodes."""

comments: list[str]
comment: list[str]
"""
Comments that go behind the move leading to this node. Comments
that occur before any moves are assigned to the root node.
"""

starting_comments: list[str]
starting_comment: list[str]
nags: Set[int]

def __init__(self, *, comment: Union[str, list[str]] = "") -> None:
Expand Down

0 comments on commit 05da598

Please sign in to comment.