Skip to content

Commit

Permalink
Update string to fstring
Browse files Browse the repository at this point in the history
  • Loading branch information
rmarow authored and trey-stafford committed Jan 16, 2025
1 parent 51969d1 commit 6d1ad27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ogdc_runner/recipe/simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def make_simple_workflow(recipe_dir: str) -> Workflow:
# error or overwrite if requested.
if data_already_published(recipe_config):
# TODO: better error handling (raise `OGDCRecipeError` or something similar)
err_msg = "Data for recipe {recipe_config.id} have already been published."
err_msg = f"Data for recipe {recipe_config.id} have already been published."
raise RuntimeError(err_msg)

with Workflow(
Expand Down

0 comments on commit 6d1ad27

Please sign in to comment.