mirror of https://github.com/jumpserver/jumpserver
6 lines
75 B
Python
6 lines
75 B
Python
|
import re
|
||
|
|
||
|
|
||
|
def no_special_chars(s):
|
||
|
return bool(re.match(r'\w+$', s))
|