mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 02:15:17 +00:00
Only parse command line args when main.py is called.
This commit is contained in:
parent
30de95e4b4
commit
3039b08eb1
@ -1,6 +1,6 @@
|
|||||||
import argparse
|
import argparse
|
||||||
import enum
|
import enum
|
||||||
|
import comfy.options
|
||||||
|
|
||||||
class EnumAction(argparse.Action):
|
class EnumAction(argparse.Action):
|
||||||
"""
|
"""
|
||||||
@ -94,7 +94,10 @@ parser.add_argument("--windows-standalone-build", action="store_true", help="Win
|
|||||||
|
|
||||||
parser.add_argument("--disable-metadata", action="store_true", help="Disable saving prompt metadata in files.")
|
parser.add_argument("--disable-metadata", action="store_true", help="Disable saving prompt metadata in files.")
|
||||||
|
|
||||||
args = parser.parse_args()
|
if comfy.options.args_parsing:
|
||||||
|
args = parser.parse_args()
|
||||||
|
else:
|
||||||
|
args = parser.parse_args([])
|
||||||
|
|
||||||
if args.windows_standalone_build:
|
if args.windows_standalone_build:
|
||||||
args.auto_launch = True
|
args.auto_launch = True
|
||||||
|
6
comfy/options.py
Normal file
6
comfy/options.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
args_parsing = False
|
||||||
|
|
||||||
|
def enable_args_parsing(enable=True):
|
||||||
|
global args_parsing
|
||||||
|
args_parsing = enable
|
Loading…
Reference in New Issue
Block a user