Skip to content

Commit f8fb87c

Browse files
committed
fix: remove unnecessary characters from string formatting
whoops
1 parent 19e98be commit f8fb87c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nbswave/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def _mix(
175175
ins_name = instrument_data.name
176176
ins_file = instrument_data.file
177177
raise MissingInstrumentException(
178-
f"The sound file for instrument f{ins_name} was not found: f{ins_file}"
178+
f"The sound file for instrument {ins_name} was not found: {ins_file}"
179179
)
180180
else:
181181
continue

0 commit comments

Comments
 (0)