Skip to content

Commit e94840d

Browse files
committed
Fix a typo that was missed by codespell but flagged by CoPilot.
Signed-off-by: M Q <[email protected]>
1 parent 6086483 commit e94840d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

monai/deploy/operators/dicom_series_to_volume_operator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def _get_rescaled_pixel_array(sop_instance):
134134

135135
# The following tests are expecting the array is already of the Numpy type.
136136
if rescaled_pixel_data.dtype == np.uint8 or rescaled_pixel_data.dtype == np.uint16:
137-
logging.info("Rescaled pixel array is alreadydy of type uint8 or uint16.")
137+
logging.info("Rescaled pixel array is already of type uint8 or uint16.")
138138
# Check if casting to uint16 and back to float results in the same values.
139139
elif np.all(rescaled_pixel_data > 0) and np.array_equal(
140140
rescaled_pixel_data, rescaled_pixel_data.astype(np.uint16)

0 commit comments

Comments
 (0)