@@ -78,40 +78,66 @@ async def game_completed(
7878
7979 @abstractmethod
8080 async def user_already_in_game_to_start_game (
81- self , user : User , location : UserLocation , / ,
81+ self ,
82+ user : User ,
83+ location : UserLocation ,
84+ / ,
8285 ) -> None : ...
8386
8487 @abstractmethod
8588 async def already_completed_game_to_make_move (
86- self , game : Game , location : UserLocation , cell_number_int : int , / ,
89+ self ,
90+ game : Game ,
91+ location : UserLocation ,
92+ cell_number_int : int ,
93+ / ,
8794 ) -> None : ...
8895
8996 @abstractmethod
9097 async def not_current_player_to_make_move (
91- self , game : Game , location : UserLocation , cell_number_int : int , / ,
98+ self ,
99+ game : Game ,
100+ location : UserLocation ,
101+ cell_number_int : int ,
102+ / ,
92103 ) -> None : ...
93104
94105 @abstractmethod
95106 async def no_cell_to_make_move (
96- self , game : Game , location : UserLocation , cell_number_int : int , / ,
107+ self ,
108+ game : Game ,
109+ location : UserLocation ,
110+ cell_number_int : int ,
111+ / ,
97112 ) -> None : ...
98113
99114 @abstractmethod
100115 async def already_filled_cell_to_make_move (
101- self , game : Game , location : UserLocation , cell_number_int : int , / ,
116+ self ,
117+ game : Game ,
118+ location : UserLocation ,
119+ cell_number_int : int ,
120+ / ,
102121 ) -> None : ...
103122
104123 @abstractmethod
105124 async def already_completed_game_to_cancel (
106- self , game : Game , location : UserLocation , / ,
125+ self ,
126+ game : Game ,
127+ location : UserLocation ,
128+ / ,
107129 ) -> None : ...
108130
109131 @abstractmethod
110132 async def users_already_in_game_to_start_game_via_matchmaking_queue (
111- self , locations_of_users_in_game : Sequence [UserLocation ], / ,
133+ self ,
134+ locations_of_users_in_game : Sequence [UserLocation ],
135+ / ,
112136 ) -> None : ...
113137
114138 @abstractmethod
115139 async def bad_attempt_to_start_game_via_matchmaking_queue (
116- self , locations_of_users_not_in_game : Sequence [UserLocation ], / ,
140+ self ,
141+ locations_of_users_not_in_game : Sequence [UserLocation ],
142+ / ,
117143 ) -> None : ...
0 commit comments