From fdf8606615d525d3c5f1adb29b52b910b5039576 Mon Sep 17 00:00:00 2001 From: M Q Date: Wed, 19 Jul 2023 11:32:23 -0700 Subject: [PATCH] Local Flake8 did not complain this one. Signed-off-by: M Q --- monai/deploy/operators/monai_seg_inference_operator.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/monai/deploy/operators/monai_seg_inference_operator.py b/monai/deploy/operators/monai_seg_inference_operator.py index 0786fa36..9fa2c5b2 100644 --- a/monai/deploy/operators/monai_seg_inference_operator.py +++ b/monai/deploy/operators/monai_seg_inference_operator.py @@ -326,7 +326,8 @@ def compute_impl(self, input_image, context): d[self._pred_dataset_key] = simple_inference()(inputs=images, network=self.model) else: raise ValueError( - f"Unknown inferer: {self._inferer!r}. Available options are {InfererType.SLIDING_WINDOW!r} and {InfererType.SIMPLE!r}." + f"Unknown inferer: {self._inferer!r}. Available options are " + f"{InfererType.SLIDING_WINDOW!r} and {InfererType.SIMPLE!r}." ) d = [post_transforms(i) for i in decollate_batch(d)]