Skip to content

Commit e79548a

Browse files
authored
Fix formatting in log call
1 parent 98dc704 commit e79548a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controlnet_aux/processor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(self, processor_id: str, params: Optional[Dict] = None) -> None:
9191
canny, content_shuffle, zoe, mediapipe_face
9292
params (Optional[Dict]): parameters for the processor
9393
"""
94-
LOGGER.info("Loading %s".format(processor_id))
94+
LOGGER.info(f"Loading {processor_id}")
9595

9696
if processor_id not in MODELS:
9797
raise ValueError(f"{processor_id} is not a valid processor id. Please make sure to choose one of {', '.join(MODELS.keys())}")

0 commit comments

Comments
 (0)