bingo/util.py
2020-01-26 17:09:52 -05:00

5 lines
101 B
Python

def is_valid_id(s: str):
return all(c.isalnum() or c in "_-" for c in s) and 16 >= len(s) >= 3