Skip to content

Commit

Permalink
exp show: fix queued exp display (iterative#5752)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmrowla authored Apr 1, 2021
1 parent c4622c6 commit aa74712
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dvc/command/experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,8 @@ def _extend_row(row, names, items, precision):
from rich.text import Text

if not items:
row.extend(["-"] * len(names))
for keys in names.values():
row.extend(["-"] * len(keys))
return

for fname, item in items:
Expand Down

0 comments on commit aa74712

Please sign in to comment.