From ce45ec8a2864f4d2ad02bb27c158f00f532affe2 Mon Sep 17 00:00:00 2001 From: Saugat Pachhai Date: Wed, 30 Jun 2021 16:05:17 +0545 Subject: [PATCH] align metrics to right and params to left in exp table (#6254) Made a mistake during refactoring on styling before --- dvc/command/experiments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dvc/command/experiments.py b/dvc/command/experiments.py index 2c96cd769a..086c109a3c 100644 --- a/dvc/command/experiments.py +++ b/dvc/command/experiments.py @@ -397,7 +397,7 @@ def show_experiments( styles.update( { header: { - "justify": "left" if typ == "metrics" else "params", + "justify": "right" if typ == "metrics" else "left", "header_style": f"black on {header_bg_colors[typ]}", "collapse": idx != 0, "no_wrap": typ == "metrics",