Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
soldni committed Jan 17, 2023
1 parent f6722a4 commit 9c45fc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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.\
Expand Down
2 changes: 1 addition & 1 deletion src/springs/rich_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 9c45fc5

Please sign in to comment.