suryansh-code / hangman

Blank line contains whitespace FLK-W293
Style
Minor
2 occurrences in this check
blank line contains whitespace
281
282
283def hangman_with_hints(secret_word):
284        285    # FILL IN YOUR CODE HERE AND DELETE "pass"
286    guesses_remaining = GUESS_LIMIT
287    warnings_remaining = 3
blank line contains whitespace
 22    returns: boolean, True if all the letters of secret_word are in letters_guessed;
 23      False otherwise
 24    """
 25     26    secret_word_list = list(secret_word)
 27    blank_word = ""
 28    complete = 0