Skip to content

Commit

Permalink
remove f string for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewcornell committed Jan 30, 2025
1 parent c70002e commit 97901dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hubverse_transform/model_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,5 +309,5 @@ def delete_model_output(self) -> None:
try:
self.fs_output.delete_file(mo_path)
except FileNotFoundError:
msg = f"Model output file not found for deletion"
msg = "Model output file not found for deletion"
self.raise_user_warning(mo_path, msg)

0 comments on commit 97901dd

Please sign in to comment.