8 lines
287 B
Python
Executable File
8 lines
287 B
Python
Executable File
#!/home/feda/MIPT/RadioPhotonic_Subserface_radar/Generator_PCB/Python_GUI/.venv/bin/python
|
|
import sys
|
|
from FreeSimpleGUI import main_get_debug_data
|
|
if __name__ == '__main__':
|
|
if sys.argv[0].endswith('.exe'):
|
|
sys.argv[0] = sys.argv[0][:-4]
|
|
sys.exit(main_get_debug_data())
|