mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-10 22:30:50 +08:00
10 lines
226 B
Python
10 lines
226 B
Python
#!/usr/bin/env python
|
|
|
|
import sys, os
|
|
|
|
# Make sure that the application source directory (this directory's parent) is
|
|
# on sys.path.
|
|
|
|
here = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
sys.path.insert(0, here)
|