manoelhc / test-actions

Doc line too long FLK-W505
Style
Minor
1 occurrence in this check
doc line too long (94 > 88 characters)
 3
 4
 5def validate_user(username: str) -> str:
 6    # TODO: https://github.com/shouldbee/reserved-usernames/blob/master/reserved-usernames.txt 7    if len(username) <= 2:
 8        raise ValueError("Username should be more than 2 characters")
 9    elif len(username) >= 255: