suryansh-code / hangman

Too many blank lines found FLK-E303
Style
Minor
3 occurrences in this check
too many blank lines (2)
363    # uncomment the following two lines.
364
365
366    ###############367
368    # To test part 3 re-comment out the above lines and
369    # uncomment the following two lines.
too many blank lines (2)
290    print(secret_word)
291
292
293    while not is_word_guessed(secret_word, guesses_combine) and guesses_remaining > 0:294        print(f"you have {guesses_remaining} guesses left")
295        print(f"avaiable letters {get_available_letters(guesses_combine)}")
296        guess_word = input("please guess a letter ").lower()
too many blank lines (2)
276            print(f"Your total score for this game is {good_guess * guesses_remaining}.")
277
278
279        if guesses_remaining == 0:280            print("Sorry, you ran out of guesses. The word was %s." % secret_word)
281
282