line 353, in <module> main() File "/home/sylw/miniconda3/envs/cf/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 335, in main json_out['return_val'] = hook(**
We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {...
files.sort(key=lambda x: int(os.path.basename(x).split(".")[0])) return files except Exception as e: return [] def listdir_models(path): try: relative_paths = [] for root, dirs, files in os.walk(path): for file in files: relative_paths.append(os.path.relpath( ...
from concurrent.futures import ThreadPoolExecutor python = sys.executable # User extension files in custom_nodes extension_folder = os.path.dirname(os.path.realpath(__file__)) # ComfyUI folders web folder_web = os.path.join(os.path.dirname(os.path.realpath(__main__.__file__)),...
Premium Support Enterprise-grade 24/7 support Pricing Search or jump to... Search code, repositories, users, issues, pull requests... Provide feedback We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feed...
except Exception as e: print(e) sorted_data = sorted(data, key=lambda x: x['date'], reverse=True) return sorted_data # workflow def read_workflow_json_files(folder_path ): json_files = [] for filename in os.listdir(folder_path): if filename.endswith('.json'): j...
We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {...
Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {{ message }} TKRLAB / ComfyUI-Manager Public forked from ltdrdata/ComfyUI-Manager Notifications You must be signed in to change notification settings Fork 0 ...
except Exception as e: logging.error(f"Failed to execute startup-script: {script_path} / {e}") return False if args.disable_all_custom_nodes: return node_paths = folder_paths.get_folder_paths("custom_nodes") for custom_node_path in node_paths: possible_modules = os.listdir...
if 'file_logging' in default_conf and default_conf['file_logging'].lower() == 'false': enable_file_logging = False except Exception: pass check_file_logging() comfy_path = os.environ.get('COMFYUI_PATH') if comfy_path is None: ...