Skip to content

Commit

Permalink
change quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanMolinier committed Mar 11, 2024
1 parent b093d01 commit 446750b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def get_mask_path_from_img_path(img_path, deriv_sub_folders, short_suffix='_seg'
paths = glob.glob(deriv_path + filename.split(ext)[0] + "*" + short_suffix + "*" + ext)

if len(paths) > 1:
print(f'Image {img_path} has multiple masks\n: {'\n'.join(paths)}')
print(f'Image {img_path} has multiple masks\n: {"\n".join(paths)}')
elif len(paths) == 1:
mask_path.append(paths[0])
return mask_path
Expand Down

0 comments on commit 446750b

Please sign in to comment.