Skip to content

Commit

Permalink
Fixed pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
spirosmaggioros committed Oct 11, 2024
1 parent edada14 commit d9d0409
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NiChart_DLMUSE/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def make_img_list(in_data: str) -> pd.DataFrame:
for tmp_ext in LIST_IMG_EXT:
if line.strip().endswith(tmp_ext):
is_nifti = True
if is_nifti == True:
if is_nifti is True:
nii_files.append(os.path.abspath(line.strip()))

nii_files = np.array(nii_files)
Expand Down

0 comments on commit d9d0409

Please sign in to comment.