File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -230,17 +230,17 @@ def register_as_decoder_plugin(module_path: str | None = None) -> bool:
230230
231231 for decoder_class in SUPPORTED_DECODER_CLASSES :
232232 _logger .info (
233- f"Adding plugin { NVIMGCODEC_PLUGIN_LABEL } with module path { module_path } and func name { func_name } "
234- f" for transfer syntax { decoder_class .UID } "
233+ f"Adding plugin { NVIMGCODEC_PLUGIN_LABEL } with module path { module_path } and func name { func_name } "
234+ f"for transfer syntax { decoder_class .UID } "
235235 )
236236 decoder_class .add_plugin (NVIMGCODEC_PLUGIN_LABEL , (module_path , func_name ))
237237
238238 # Need to sort the plugins to make sure the custom plugin is the first in items() of
239239 # the decoder class search for the plugin to be used.
240240 decoder_class ._available = dict (sorted (decoder_class ._available .items (), key = lambda item : item [0 ]))
241241 _logger .info (
242- f"Registered decoder plugin { NVIMGCODEC_PLUGIN_LABEL } for transfer syntax { decoder_class .UID } :"
243- f" { decoder_class .available_plugins } "
242+ f"Registered decoder plugin { NVIMGCODEC_PLUGIN_LABEL } for transfer syntax { decoder_class .UID } : "
243+ f"{ decoder_class .available_plugins } "
244244 )
245245 _logger .info (f"Registered nvimgcodec decoder plugin with { len (SUPPORTED_DECODER_CLASSES )} decoder classes." )
246246
You can’t perform that action at this time.
0 commit comments