Compare commits
No commits in common. "2e5b0b8dbdec986539a22b39c2d571e50e440246" and "16c6bff5e49a5a3f9a55ccf5026df76349ad0341" have entirely different histories.
2e5b0b8dbd
...
16c6bff5e4
3 changed files with 3 additions and 12 deletions
|
|
@ -1,9 +1,3 @@
|
|||
## 0.2.0a30 (2026-01-21)
|
||||
|
||||
### Fix
|
||||
|
||||
- leadership with smaller default value
|
||||
|
||||
## 0.2.0a29 (2026-01-21)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.output_display"
|
||||
version = "0.2.0a30"
|
||||
version = "0.2.0a29"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "Rougail output display"
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ from typing import Optional, Any
|
|||
from ruamel.yaml import YAML
|
||||
from io import BytesIO
|
||||
|
||||
from tiramisu.error import PropertiesOptionError, LeadershipError, ConfigError
|
||||
from tiramisu.error import PropertiesOptionError, ConfigError
|
||||
from tiramisu import owners, groups
|
||||
|
||||
from .config import OutPuts
|
||||
|
|
@ -325,10 +325,7 @@ class Node:
|
|||
true_default = True
|
||||
value = meta_option.value.default()
|
||||
else:
|
||||
try:
|
||||
is_default = meta_option.owner.isdefault()
|
||||
except LeadershipError:
|
||||
break
|
||||
try:
|
||||
value = meta_option.value.get()
|
||||
except ValueError as err:
|
||||
|
|
|
|||
Loading…
Reference in a new issue