added ability to use pure boolean in conditionals
This commit is contained in:
parent
513297abf9
commit
4457985062
1 changed files with 4 additions and 0 deletions
|
@ -64,6 +64,10 @@ class Conditional:
|
|||
ds = getattr(self, '_ds')
|
||||
|
||||
try:
|
||||
# this allows for direct boolean assignments to conditionals "when: False"
|
||||
if isinstance(self.when, bool):
|
||||
return self.when
|
||||
|
||||
for conditional in self.when:
|
||||
if not self._check_conditional(conditional, templar, all_vars):
|
||||
return False
|
||||
|
|
Loading…
Reference in a new issue