9 lines
282 B
Plaintext
9 lines
282 B
Plaintext
|
#!/home/infidel/Sync/TIP/WireGuard/ocp-wg-backend/dell-env/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
import re
|
||
|
import sys
|
||
|
from dash.development.update_components import cli
|
||
|
if __name__ == '__main__':
|
||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||
|
sys.exit(cli())
|