(import_json)
| 189 | |
| 190 | |
| 191 | def is_launcher_json_format(import_json): |
| 192 | if "format" in import_json and import_json["format"] == "comfyui_launcher": |
| 193 | return True |
| 194 | return False |
| 195 | |
| 196 | def setup_custom_nodes_from_snapshot(project_folder_path, launcher_json): |
| 197 | if not launcher_json: |