suryansh-code / hangman

Missing whitespace after ,, ;, or : FLK-E231
Style
Minor
6 months ago6 months old
missing whitespace after ','
300
301        if guess_word == '*':
302            print("possible matches are : " ,
303                  show_possible_matches(get_guessed_word(secret_word,guesses_combine)))304
305        if not guess_word or guess_word not in string.ascii_lowercase:
306            if warnings_remaining != 0:
missing whitespace after ','
230
231        if guess_word == '*':
232            print("possible matches are : " ,
233                  show_possible_matches(get_guessed_word(secret_word,guesses_combine)))234
235        if not guess_word or guess_word not in string.ascii_lowercase:
236            if warnings_remaining != 0: