From 031f2373d28438f52390f27460b3dc67e05c3d17 Mon Sep 17 00:00:00 2001 From: ImFlizzyy <115953824+ImFlizzyy@users.noreply.github.com> Date: Fri, 23 Dec 2022 02:11:41 +0100 Subject: [PATCH] . --- cmd_interface.py | 7 ++++--- game_bot.py | 3 ++- game_player.py | 3 ++- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/cmd_interface.py b/cmd_interface.py index 3f9c90e..c756be5 100644 --- a/cmd_interface.py +++ b/cmd_interface.py @@ -98,8 +98,8 @@ class Matrix: def print(self): for i in range(self.lines): for j in range(self.columns): - print(self.matrix[i][j], end="") - print(end="" if i < self.lines - 1 else "\r") + print(self.matrix[i][j], end = "") + print(end = "" if i < self.lines - 1 else "\r") def set_string(self, x, y, chars): for i in range(len(chars)): @@ -115,4 +115,5 @@ class Matrix: def add_matrix(self, x, y, matrix): for i in range(len(matrix)): for j in range(len(matrix[i])): - self.set(self, x + j, y + i, matrix[i][j]) \ No newline at end of file + self.set(self, x + j, y + i, matrix[i][j]) + \ No newline at end of file diff --git a/game_bot.py b/game_bot.py index 1ffa5d6..742d410 100644 --- a/game_bot.py +++ b/game_bot.py @@ -163,4 +163,5 @@ class BOT: self.trumpf_color = trumpf_color def __str__(self): - return self.name \ No newline at end of file + return self.name + \ No newline at end of file diff --git a/game_player.py b/game_player.py index c46a204..add51e2 100644 --- a/game_player.py +++ b/game_player.py @@ -87,4 +87,5 @@ class PLAYER: - cards: list list of cards ''' - self.cards = cards \ No newline at end of file + self.cards = cards + \ No newline at end of file