8 lines
261 B
Python
Executable File
8 lines
261 B
Python
Executable File
#!/Users/matthias/Documents/Projects/Homelab/Home-Bro/home-bro-brain/venv_piper/bin/python
|
|
import sys
|
|
from humanfriendly.cli import main
|
|
if __name__ == '__main__':
|
|
if sys.argv[0].endswith('.exe'):
|
|
sys.argv[0] = sys.argv[0][:-4]
|
|
sys.exit(main())
|