Fix list append

This commit is contained in:
Nick Mowen 2023-02-17 16:10:24 -07:00
parent 66341ef0cf
commit e104ef0bd8

View File

@ -22,7 +22,7 @@ for _, name, _ in _included_modules:
try: try:
# currently openvino may fail when importing # currently openvino may fail when importing
# on an arm device with 64 KiB page size. # on an arm device with 64 KiB page size.
plugin_modules += importlib.import_module(name) plugin_modules.append(importlib.import_module(name))
except ImportError as e: except ImportError as e:
logger.error(f"Error importing detector runtime: {e}") logger.error(f"Error importing detector runtime: {e}")