forked from bton/matekasse
8 lines
264 B
Python
Executable file
8 lines
264 B
Python
Executable file
#!/home/anton/Documents/Projekte/Matekass_2.0/venv/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from pytest import console_main
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(console_main())
|