mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
9 lines
265 B
Python
Executable File
9 lines
265 B
Python
Executable File
#!/home/kristofers/Documents/python/School/IKEA_scraper/.venv/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from yapf import run_main
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(run_main())
|