From 503d0eaba516bc69ac0e9fcb9538bc34e84be7e7 Mon Sep 17 00:00:00 2001 From: Chris Bridge Date: Mon, 21 Oct 2024 18:17:22 -0400 Subject: [PATCH] Linter fix --- tests/test_io.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_io.py b/tests/test_io.py index 01617c7f..838152a3 100644 --- a/tests/test_io.py +++ b/tests/test_io.py @@ -294,7 +294,9 @@ def test_read_single_frame_sm_image_jpegls_dicom_file_like_opened(self): ) np.testing.assert_array_equal(frame, pixel_array[fno]) - def test_read_single_frame_sm_image_jpegls_nobot_dicom_file_like_opened(self): + def test_read_single_frame_sm_image_jpegls_nobot_dicom_file_like_opened( + self + ): # Test reading frames from an opened DicomFileLike file filename = self._test_dir.joinpath("sm_image_jpegls_nobot.dcm") dcm = DicomFileLike(filename.open("rb"))