Skip to content

Commit

Permalink
Fix DefaultValueValidator validating only once
Browse files Browse the repository at this point in the history
  • Loading branch information
pehala committed Feb 1, 2024
1 parent 6b38bd8 commit c6039ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testsuite/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, name, default, **kwargs) -> None:
)
},
default=default,
when=Validator(name, must_exist=False),
when=Validator(name, must_exist=False) | Validator(name, eq=None),
**kwargs
)

Expand Down

0 comments on commit c6039ca

Please sign in to comment.