Skip to content

Commit 2ee025a

Browse files
authored
Merge pull request #57 from samuelbray32/patch-1
Fix f-string bug
2 parents 7eafba6 + 785e32c commit 2ee025a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rec_to_nwb/processing/nwb/components/dio/dio_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __get_dict(cls, directory):
4444
else:
4545
if not(file.split(".")[-2].split("_")[-2] == "ECU"):
4646
print(
47-
f"WARNING: {file.split('.')[-2].split("_")[-2]} is not a recognized dio type. Including file: {file}, but proceed with caution."
47+
f"WARNING: {file.split('.')[-2].split('_')[-2]} is not a recognized dio type. Including file: {file}, but proceed with caution."
4848
)
4949
dio_name = file.split(".")[-2].split("_")[
5050
-1

0 commit comments

Comments
 (0)