From 9c45fc529f5f303a3d85bb9df88100a6c86aafe9 Mon Sep 17 00:00:00 2001 From: Luca Soldaini Date: Tue, 17 Jan 2023 14:13:01 -0800 Subject: [PATCH] hotfix --- pyproject.toml | 2 +- src/springs/rich_utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4b1746d..214a39e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "springs" -version = "1.11.0" +version = "1.11.1" description = """\ A set of utilities to create and manage typed configuration files \ effectively, built on top of OmegaConf.\ diff --git a/src/springs/rich_utils.py b/src/springs/rich_utils.py index 3836023..e386a75 100644 --- a/src/springs/rich_utils.py +++ b/src/springs/rich_utils.py @@ -352,7 +352,7 @@ def make_config_tree( + Text(text=": ", style=theme.r_leaf) + Text(text=f"({type_name})", style=theme.r_leaf) + Text(text=" = ", style=theme.r_leaf) - + Text(text=spec.value, style=theme.r_leaf) + + Text(text=str(spec.value), style=theme.r_leaf) ) # Add help if available; print it a gray color and italic.