Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ tar xvf group_data.tar
Add the hash_list file to Git:

```
git add data/group-*/hash_list.txt
git add group-*/hash_list.txt
git commit -m "Add hash list file"
```

Expand Down
2 changes: 1 addition & 1 deletion scripts/find_outliers.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def print_outliers(data_directory):
outlier_strs = []
for out_ind in outliers:
outlier_strs.append(str(out_ind))
print(', '.join([fname] + outlier_strs))
print(', '.join([str(fname)] + outlier_strs))


def get_parser():
Expand Down