Skip to content

Commit b3e3a8d

Browse files
author
Christopher Bridge
committed
Fix f-strings
Signed-off-by: Christopher Bridge <[email protected]>
1 parent fc4bc47 commit b3e3a8d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

integrations/nuance_pin/app/post_inference_ops.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,11 @@ def compute(self, op_input: InputContext, op_output: OutputContext, context: Exe
138138
],
139139
)
140140

141-
gsps.save_as(os.path.join(output_path, f"gsps.dcm"))
141+
gsps_filename = os.path.join(output_path, "gsps.dcm")
142+
gsps.save_as(gsps_filename)
142143

143144
self.upload_gsps(
144-
file=os.path.join(output_path, f"gsps.dcm"),
145+
file=gsps_filename,
145146
document_detail="MONAI Lung Nodule Detection v0.2.0",
146147
series_uid=series_uid,
147148
)

0 commit comments

Comments
 (0)