Skip to content

Commit

Permalink
🧹 Fixed implicit single-line string concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
s-weigand committed Jan 7, 2023
1 parent 563e8f9 commit 3c26f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glotaran/project/project_result_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def _latest_result_path_fallback(self, name: str, *, latest: bool = False) -> Pa
return path

raise ValueError(
f"Result {name!r} does not exist. " f"Known Results are: {list(self.items.keys())}"
f"Result {name!r} does not exist. Known Results are: {list(self.items.keys())}"
)

def create_result_run_name(self, base_name: str) -> str:
Expand Down

0 comments on commit 3c26f36

Please sign in to comment.