mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
8 lines
192 B
Python
8 lines
192 B
Python
import sys
|
|
from .cli import main
|
|
|
|
if __name__ == "__main__":
|
|
# __main__.py is ugly and confusing, monkey patch executable to say snakeviz
|
|
sys.argv[0] = "snakeviz"
|
|
sys.exit(main())
|