mirror of
https://github.com/simon987/bingo.git
synced 2025-04-18 07:56:43 +00:00
5 lines
79 B
Python
5 lines
79 B
Python
|
|
def is_valid_id(s: str):
|
|
return all(c.isalnum() or c in "_-" for c in s)
|
|
|