Skip to content

Commit

Permalink
avoid implicit string concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed Mar 12, 2024
1 parent 5345346 commit 63eaae0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bioimageio/core/model_adapters/_model_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ def create(
error_msg = ""

raise ValueError(
f"None of the weight formats {weight_format_priority_order} is supported for {model_description.name} "
f"in this environment.{error_msg}"
f"None of the weight formats {weight_format_priority_order} is "
+ f"supported for {model_description.name} in this environment.{error_msg}"
)

@final
Expand Down

0 comments on commit 63eaae0

Please sign in to comment.