mirror of
https://github.com/harivansh-afk/DS1001-LABS-Projects.git
synced 2026-04-15 05:02:08 +00:00
7 lines
233 B
Python
Executable file
7 lines
233 B
Python
Executable file
#!/workspaces/DS1001-LABS-Projects/.vscode/hari_env/bin/python
|
|
import sys
|
|
from numpy.f2py.f2py2e import main
|
|
if __name__ == '__main__':
|
|
if sys.argv[0].endswith('.exe'):
|
|
sys.argv[0] = sys.argv[0][:-4]
|
|
sys.exit(main())
|