--------------------------------------------------------------------------- FileNotFoundError Traceback (most recent call last) Cell In[1], line 19 16 display(output) 18 #sb = ScoreBoard.ScoreBoard('./data/Urbania.team', './data/12.a-Andata-BASKERS FORLIMPOPOLI.game', scale=0.4, output=output) ---> 19 sb = ScoreBoard.ScoreBoard('./data/Urbania.team', './data/5.a-Ritorno-BARTOLI FOSSOMBRONE .game', scale=0.4, output=output) 21 o = Opponents.Opponents(sb) File ~/notebooks/pyBasket/ScoreBoard.py:69, in ScoreBoard.__init__(self, team_file, game_file, scale, output) 67 # Read game info from the input files 68 self.team_file = team_file ---> 69 self.game = Game.Game(self, team_file, game_file) 71 # Store input parameters 72 self._scale = scale File ~/notebooks/pyBasket/Game.py:88, in Game.__init__(self, board, team_file, game_file) 85 self.players_images[player_name] = colors.image2Base64(img) 87 # Load the game from the game_file ---> 88 self.loadGame(game_file) 90 # Pre-create 30 cards for playersList and opponentsList calls (5onfield + 12players + 12opponents) 91 w = '100px' File ~/notebooks/pyBasket/Game.py:134, in Game.loadGame(self, game_file) 104 self.game_data = { 105 "date": datetime.datetime.today().strftime('%d/%m/%Y'), 106 "time": "18:00", (...) 131 "events": [] 132 } 133 else: --> 134 with open(self.game_file) as f: 135 self.game_data = json.load(f) 137 # Fill missing info FileNotFoundError: [Errno 2] No such file or directory: './data/5.a-Ritorno-BARTOLI FOSSOMBRONE .game'