Skip to content

Commit

Permalink
Add missing space (#1935)
Browse files Browse the repository at this point in the history
  • Loading branch information
strickvl authored Oct 12, 2023
1 parent 82da7ef commit 24cc606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zenml/models/model_base_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def _root_validator(cls, values: Dict[str, Any]) -> Dict[str, Any]:
if version is None:
if not suppress_warnings:
logger.info(
"Creation of new model version was requested, but no version name was explicitly provided."
"Creation of new model version was requested, but no version name was explicitly provided. "
f"Setting `version` to `{RUNNING_MODEL_VERSION}`."
)
values["version"] = RUNNING_MODEL_VERSION
Expand Down

0 comments on commit 24cc606

Please sign in to comment.