Skip to content

Commit fe819c4

Browse files
authored
Merge pull request #6 from nipraxis-fall-2022-forks/fix-find-outliers
Fix use of Path in find_outliers script.
2 parents cf075b8 + b28385e commit fe819c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/find_outliers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def print_outliers(data_directory):
2525
outlier_strs = []
2626
for out_ind in outliers:
2727
outlier_strs.append(str(out_ind))
28-
print(', '.join([fname] + outlier_strs))
28+
print(', '.join([str(fname)] + outlier_strs))
2929

3030

3131
def get_parser():

0 commit comments

Comments
 (0)