diff options
Diffstat (limited to 'api/game/voerbak_connector.py')
-rw-r--r-- | api/game/voerbak_connector.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/api/game/voerbak_connector.py b/api/game/voerbak_connector.py index 412a512..0b51bd5 100644 --- a/api/game/voerbak_connector.py +++ b/api/game/voerbak_connector.py @@ -21,10 +21,10 @@ class bord: self.board_full = False self.win_positions = [] self.process = subprocess.Popen( - [VOERBAK_LOCATION, f"-w {w}", f"-h {h}"], - stdin=subprocess.PIPE, - stdout=subprocess.PIPE, - stderr=None + [VOERBAK_LOCATION, f"-w {w}", f"-h {h}"], + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=None ) self.process.stdin.flush() |