Skip to content

Commit

Permalink
Merge pull request #57 from samuelbray32/patch-1
Browse files Browse the repository at this point in the history
Fix f-string bug
  • Loading branch information
edeno committed Sep 6, 2023
2 parents 7eafba6 + 785e32c commit 2ee025a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rec_to_nwb/processing/nwb/components/dio/dio_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __get_dict(cls, directory):
else:
if not(file.split(".")[-2].split("_")[-2] == "ECU"):
print(
f"WARNING: {file.split('.')[-2].split("_")[-2]} is not a recognized dio type. Including file: {file}, but proceed with caution."
f"WARNING: {file.split('.')[-2].split('_')[-2]} is not a recognized dio type. Including file: {file}, but proceed with caution."
)
dio_name = file.split(".")[-2].split("_")[
-1
Expand Down

0 comments on commit 2ee025a

Please sign in to comment.