mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-08-08 23:10:15 -03:00
Fix ~950 basedpyright errors across the backend: - Convert ineffective # type: ignore comments to # pyright: ignore[rule] - Add missing generic type arguments (Dict[str, Any], list[Any], ...) - Annotate dynamic dict literals and runtime-initialized attributes - Widen CivitAI provider tuple signatures in recipe parsers - Remove dead LoraRoutes handlers calling nonexistent LoraService methods - Suppress unavoidable ServiceRegistry import cycles (basedpyright counts function-local imports as cycle edges)
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
import os
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# Check if running in standalone mode
|
|
standalone_mode = (
|
|
os.environ.get("LORA_MANAGER_STANDALONE", "0") == "1"
|
|
or os.environ.get("HF_HUB_DISABLE_TELEMETRY", "0") == "0"
|
|
)
|
|
|
|
if not standalone_mode:
|
|
from .metadata_hook import MetadataHook
|
|
from .metadata_registry import MetadataRegistry
|
|
|
|
def init():
|
|
# Install hooks to collect metadata during execution
|
|
MetadataHook.install()
|
|
|
|
# Initialize registry
|
|
registry = MetadataRegistry()
|
|
|
|
logger.info("ComfyUI Metadata Collector initialized")
|
|
|
|
def get_metadata(prompt_id=None): # pyright: ignore[reportRedeclaration]
|
|
"""Helper function to get metadata from the registry"""
|
|
registry = MetadataRegistry()
|
|
return registry.get_metadata(prompt_id)
|
|
else:
|
|
# Standalone mode - provide dummy implementations
|
|
def init():
|
|
logger.info("ComfyUI Metadata Collector disabled in standalone mode")
|
|
|
|
def get_metadata(prompt_id=None): # pyright: ignore[reportRedeclaration]
|
|
"""Dummy implementation for standalone mode"""
|
|
return {}
|