Skip to content

Commit a8a5a6f

Browse files
committed
feat(__init__): add WEB_DIRECTORY constant for web assets path
Add a new constant WEB_DIRECTORY set to "./web" to define the directory path for web-related assets during package initialization. This improves organization by centralizing the path configuration. Additionally, removed trailing newline at file end to maintain consistent code formatting.
1 parent 64d8ede commit a8a5a6f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
force_full_system_cleanup,
2121
)
2222

23+
WEB_DIRECTORY = "./web"
2324
MGPU_MM_LOG = False
2425
DEBUG_LOG = False
2526

@@ -288,4 +289,4 @@ def register_and_count(module_names, node_map):
288289
logger.info(fmt_reg.format(item['name'], item['found'], str(item['count'])))
289290
logger.info(dash_line)
290291

291-
logger.info(f"[MultiGPU] Registration complete. Final mappings: {', '.join(NODE_CLASS_MAPPINGS.keys())}")
292+
logger.info(f"[MultiGPU] Registration complete. Final mappings: {', '.join(NODE_CLASS_MAPPINGS.keys())}")

0 commit comments

Comments
 (0)