Skip to content

Commit

Permalink
fix: token error
Browse files Browse the repository at this point in the history
  • Loading branch information
cdnninja committed Apr 14, 2024
1 parent f8a6818 commit b64cd6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yoto_api/YotoManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def __init__(self, username: str, password: str) -> None:
self.initialize()

def initialize(self) -> None:
self.update_player_status(self.token)
self.update_cards(self.token)
self.update_player_status()
self.update_cards()

def update_player_status(self) -> None:
# TODO: Should update the self.players object with a current dict of players. Below isn't complete
Expand Down

0 comments on commit b64cd6d

Please sign in to comment.