afulara's picture
Auto‑deploy from GitHub
c3967db verified
raw
history blame contribute delete
321 Bytes
#!/bin/sh
'''exec' "/Users/aqsa/AI Projects/Certification Challenge/formpilot/.venv/bin/python3.12" "$0" "$@"
' '''
# -*- coding: utf-8 -*-
import re
import sys
from IPython import start_ipython
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(start_ipython())