mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-16 00:12:33 +08:00
Assume JSON config files are text, utf-8 encoded
This commit is contained in:
parent
faba95d94a
commit
a315ec1c0a
@ -27,10 +27,10 @@ def get_path_as_dict(config_dict_or_path: str | dict | None, config_path_inside_
|
|||||||
else:
|
else:
|
||||||
if not os.path.exists(config_dict_or_path):
|
if not os.path.exists(config_dict_or_path):
|
||||||
with resources.as_file(resources.files(package) / config_path_inside_package) as config_path:
|
with resources.as_file(resources.files(package) / config_path_inside_package) as config_path:
|
||||||
with open(config_path) as f:
|
with open(config_path, mode="rt", encoding="utf-8") as f:
|
||||||
config = json.load(f)
|
config = json.load(f)
|
||||||
else:
|
else:
|
||||||
with open(config_dict_or_path) as f:
|
with open(config_dict_or_path, mode="rt", encoding="utf-8") as f:
|
||||||
config = json.load(f)
|
config = json.load(f)
|
||||||
elif isinstance(config_dict_or_path, dict):
|
elif isinstance(config_dict_or_path, dict):
|
||||||
config = config_dict_or_path
|
config = config_dict_or_path
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user