From e4b1609419afbc135bba3f652505453f2ee46c20 Mon Sep 17 00:00:00 2001 From: Taha <52203170+WalteXqx@users.noreply.github.com> Date: Wed, 13 Apr 2022 20:35:58 +0300 Subject: [PATCH] removed a unnecessary space in line 17 there was a space between system and () and that's not supposed to be there --- HANGMAN_GAME/hangman.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HANGMAN_GAME/hangman.py b/HANGMAN_GAME/hangman.py index 33a9b6e..8f586a4 100644 --- a/HANGMAN_GAME/hangman.py +++ b/HANGMAN_GAME/hangman.py @@ -14,7 +14,7 @@ import random def cls(): - system ('cls') + system('cls') def hangman_game(): cls() @@ -102,4 +102,4 @@ def hangman_game(): hangman_game() -hangman_game() \ No newline at end of file +hangman_game()