mirror of
https://github.com/home-assistant/core.git
synced 2025-08-14 01:55:18 +02:00
Style fix
This commit is contained in:
@@ -148,10 +148,12 @@ def _process_if(hass, config, if_configs, action, cond_type):
|
||||
|
||||
if cond_type == CONDITION_TYPE_AND:
|
||||
def if_action():
|
||||
""" AND all conditions. """
|
||||
if all(check() for check in checks):
|
||||
action()
|
||||
else:
|
||||
def if_action():
|
||||
""" OR all conditions. """
|
||||
if any(check() for check in checks):
|
||||
action()
|
||||
|
||||
|
Reference in New Issue
Block a user