9 lines
268 B
Text
9 lines
268 B
Text
|
#!/home/alpcentaur/ProjektA/PrototypeWebApp/venv/bin/python3.5
|
||
|
# -*- coding: utf-8 -*-
|
||
|
import re
|
||
|
import sys
|
||
|
from jupyter_server.extensions import main
|
||
|
if __name__ == '__main__':
|
||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||
|
sys.exit(main())
|