manoelhc / test-actions

Use of FIXME/XXX/TODO encountered PYL-W0511
Documentation
Minor
1 occurrence in this check
TODO: https://github.com/shouldbee/reserved-usernames/blob/master/reserved-usernames.txt
 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: