Skip to content

Commit

Permalink
Fixing py docs: arguments for client APIs (mlflow#2595)
Browse files Browse the repository at this point in the history
Force merging since failing tests were unrelated. docs test passed.
  • Loading branch information
mparkhe authored Mar 17, 2020
1 parent 79f6a05 commit 21d3f40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mlflow/tracking/_model_registry/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def transition_model_version_stage(self, name, version, stage, archive_existing_
:param name: Registered model name.
:param version: Registered model version.
:param new_stage: New desired stage for this model version.
:param stage: New desired stage for this model version.
:param archive_existing_versions: If this flag is set, all existing model
versions in the stage will be atomically moved to the "archived" stage.
Expand Down
4 changes: 1 addition & 3 deletions mlflow/tracking/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,9 +498,7 @@ def transition_model_version_stage(self, name, version, stage):
:param name: Registered model name.
:param version: Registered model version.
:param new_stage: New desired stage for this model version.
:param archive_existing_versions: If this flag is set, all existing model
versions in the stage will be atomically moved to the "archived" stage.
:param stage: New desired stage for this model version.
:return: A single :py:class:`mlflow.entities.model_registry.ModelVersion` object.
"""
Expand Down

0 comments on commit 21d3f40

Please sign in to comment.