Skip to content

Commit

Permalink
remove pointless ()
Browse files Browse the repository at this point in the history
  • Loading branch information
Rainchus committed Mar 5, 2024
1 parent c149616 commit 6cc4520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/splat_ext/pm_sbn.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def lookup_file_id(self, filename: str) -> int:
return id
elif sbn_file.file_name().split('_')[0] == filename.split('_')[0]:
suggestion = sbn_file.file_name()
if (suggestion == ""):
if suggestion == "":
raise Exception(f"File not found: {filename} - is it in the file_id_map?")
else:
raise Exception(f"File not found: {filename} - is it in the file_id_map? (Did you mean to name the file: {suggestion}?)")
Expand Down

0 comments on commit 6cc4520

Please sign in to comment.