suryansh-code / hangman

Unnecessary else / elif used after return PYL-R1705
Style
Major
6 months ago6 months old
Unnecessary "else" after "return", remove the "else" and de-indent the code inside it
 97            else:
 98                continue
 99
100    if guess == secret_word:101        return True
102    else:
103        return False