From 86e0512b7b54a23ce5b76e017489e437bc847699 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 19 Jul 2017 00:54:06 +0200 Subject: [PATCH] Sistemate le annotation --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 2086bd2..78251d3 100644 --- a/main.py +++ b/main.py @@ -25,7 +25,7 @@ freenames = s.names_list.copy() class Player: """Classe di un giocatore. Contiene tutti i dati riguardanti un giocatore all'interno di una partita, come il ruolo, e i dati riguardanti telegram, come ID e username.""" - def __init__(self, game: Game, tid: int, tusername: str, dummy=False): + def __init__(self, game: 'Game', tid: int, tusername: str, dummy=False): self.tid = tid # ID di Telegram self.tusername = tusername # Username di Telegram self.role = Role(self) # Di base, ogni giocatore รจ un ruolo indefinito