mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-14 12:27:09 +00:00
6 lines
75 B
Python
6 lines
75 B
Python
import re
|
|
|
|
|
|
def no_special_chars(s):
|
|
return bool(re.match(r'\w+$', s))
|