mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-24 06:32:12 -03:00
Update process_node function to ignore type checking
- Added a type: ignore comment to the process_node function to suppress type checking errors. - Removed the README.md file as it is no longer needed.
This commit is contained in:
@@ -46,7 +46,7 @@ def get_all_mappers() -> Dict[str, Dict]:
|
||||
# Node Processing Function
|
||||
# =============================================================================
|
||||
|
||||
def process_node(node_id: str, node_data: Dict, workflow: Dict, parser: 'WorkflowParser') -> Any:
|
||||
def process_node(node_id: str, node_data: Dict, workflow: Dict, parser: 'WorkflowParser') -> Any: # type: ignore
|
||||
"""Process a node using its mapper and extract relevant information"""
|
||||
node_type = node_data.get("class_type")
|
||||
mapper = get_mapper(node_type)
|
||||
|
||||
Reference in New Issue
Block a user