Skip to content

Commit

Permalink
Update and remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorbayless committed Jun 4, 2024
1 parent 392bf07 commit d0c4b14
Showing 1 changed file with 0 additions and 39 deletions.
39 changes: 0 additions & 39 deletions src/cli_chess/core/game/game_model_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,45 +52,6 @@ def _notify_game_model_updated(self, **kwargs) -> None:
"""Notify listeners that the model has updated"""
self.e_game_model_updated.notify(**kwargs)

# @staticmethod
# def _default_game_metadata() -> dict:
# """Returns the default structure for game metadata"""
# return {
# 'gameId': "",
# 'variant': "",
# 'players': {
# 'white': {
# 'title': "",
# 'name': "",
# 'rating': "",
# 'rating_diff': "",
# 'provisional': False,
# },
# 'black': {
# 'title': "",
# 'name': "",
# 'rating': "",
# 'rating_diff': "",
# 'provisional': False,
# },
# },
# 'clock': {
# 'units': "ms",
# 'white': {
# 'time': 0,
# 'increment': 0
# },
# 'black': {
# 'time': 0,
# 'increment': 0
# },
# },
# 'state': {
# 'status': "",
# 'winner': "",
# }
# }


class PlayableGameModelBase(GameModelBase, ABC):
def __init__(self, play_as_color: str, variant="standard", fen=""):
Expand Down

0 comments on commit d0c4b14

Please sign in to comment.