fix lint error in core.py

This commit is contained in:
Moeblack 2023-06-13 22:43:02 +08:00 committed by henryruhs
parent 48f868f293
commit 13644927fc

View File

@ -4,6 +4,7 @@ from typing import Any
FRAME_PROCESSORS_MODULES = None
def load_processor_module(frame_processor: str)-> Any:
try:
frame_processor_module = importlib.import_module(f'roop.processors.frame.{frame_processor}')