Skip to content

Commit 39117b1

Browse files
committed
Spacing change
Signed-off-by: M Q <[email protected]>
1 parent cbf68c2 commit 39117b1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

monai/deploy/operators/decoder_nvimgcodec.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)