Skip to content

Commit

Permalink
api: exp_show: Cleanup flags.
Browse files Browse the repository at this point in the history
  • Loading branch information
daavoo committed May 1, 2023
1 parent 2a04263 commit 0f1326e
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions dvc/api/experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,6 @@ def exp_show(
repo: Optional[str] = None,
revs: Optional[Union[str, List[str]]] = None,
num: int = 1,
hide_queued: bool = False,
hide_failed: bool = False,
sha: bool = False,
param_deps: bool = False,
force: bool = False,
) -> List[Dict]:
Expand All @@ -119,13 +116,6 @@ def exp_show(
Give a negative value to include all first-parent commits (similar
to `git log -n`).
Defaults to 1.
hide_queued (bool, optional): hide experiments that are queued for
execution.
Defaults to `False`.
hide_failed (bool, optional): hide experiments that have failed.
sha (bool, optional): show the Git commit SHAs of the experiments
instead of branch, tag, or experiment names.
Defaults to `False`.
param_deps (bool, optional): include only parameters that are stage
dependencies.
Defaults to `False`.
Expand All @@ -144,11 +134,8 @@ def exp_show(
"""
with Repo.open(repo) as _repo:
experiments = _repo.experiments.show(
hide_queued=hide_queued,
hide_failed=hide_failed,
revs=revs,
num=num,
sha_only=sha,
param_deps=param_deps,
force=force,
)
Expand Down

0 comments on commit 0f1326e

Please sign in to comment.