MinDalle_StableDiff/Python310/Lib/venv/__main__.py

11 lines
145 B
Python
Raw Normal View History

2022-09-17 15:34:37 +03:00
import sys
from . import main
rc = 1
try:
main()
rc = 0
except Exception as e:
print('Error: %s' % e, file=sys.stderr)
sys.exit(rc)