Skip to content

Commit

Permalink
chore: fix type issues exposed by mypy v1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tazlin committed May 9, 2024
1 parent 5177dc1 commit 6791007
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hordelib/nodes/node_lora_loader.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os

import comfy.utils
import folder_paths
import folder_paths # type: ignore
from loguru import logger


Expand Down
2 changes: 1 addition & 1 deletion tests/test_comfy.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def test_fix_pipeline_types(self, hordelib_instance: HordeLib):

def test_fix_node_names(self, hordelib_instance: HordeLib):
# basically we are expecting a search and replace of "1" with the "title" of id 1, etc.
data = {
data: dict = {
"1": {
"inputs": {
"input1": ["2", 0],
Expand Down

0 comments on commit 6791007

Please sign in to comment.