lnd212 238bf88b72 BIG UPDATE
Updated python to 3.10
Updated diffusers to 0.4.1
2022-10-09 17:27:10 +04:00

8 lines
148 B
Python

"""Main entry point"""
import sys
if sys.argv[0].endswith("__main__.py"):
sys.argv[0] = "python -m tkinter"
from . import _test as main
main()