Skip to content

Commit

Permalink
fix format error
Browse files Browse the repository at this point in the history
  • Loading branch information
veni-vidi-vici-dormivi committed Feb 20, 2024
1 parent 9b0cdb6 commit 8889c28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filefinder/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def _prioritize(df, key, order, on_missing, multiindex):
elif on_missing == "skip":
pass
else:
raise ValueError(f"on_missing must be one of 'error', 'warn', 'skip'")
raise ValueError("on_missing must be one of 'error', 'warn', 'skip'")

df = pd.concat(out, axis=0)
df = df.reset_index(drop=True)
Expand Down

0 comments on commit 8889c28

Please sign in to comment.