Skip to content

Commit c52fece

Browse files
committed
STY: black [ignore-rev]
1 parent 529f6f4 commit c52fece

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

nipype/interfaces/tests/test_dcm2nii.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ def test_search_files(tmp_path, fname, extension, search_crop):
2222
test_cropped_file = tmp_path / tmp_cropped_fname
2323
test_cropped_file.touch()
2424

25-
actual_files_list = dcm2nii.search_files(str(tmp_path / fname), [extension], search_crop)
25+
actual_files_list = dcm2nii.search_files(
26+
str(tmp_path / fname), [extension], search_crop
27+
)
2628
for f in actual_files_list:
2729
if search_crop:
28-
assert (f in (str(test_cropped_file), str(test_file)))
30+
assert f in (str(test_cropped_file), str(test_file))
2931
else:
3032
assert str(test_file) == f

0 commit comments

Comments
 (0)