Skip to content

Commit

Permalink
fix bug | variable declared as list|
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusmotea committed Sep 20, 2024
1 parent 75ad9fe commit ba65af3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BridgeEmulator/functions/behavior_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def threadDelayAction(actionsToExecute, device, monitoredKey, monitoredValue, gr
def executeActions(actionsToExecute, groupsAndLights):
recall = "recall"
if "recall_single" in actionsToExecute: # need to discover the differences between recall and recall_single
recall = ["recall_single"]
recall = "recall_single"
logging.info("execute routine action")
if recall in actionsToExecute:
for action in actionsToExecute[recall]:
Expand Down

0 comments on commit ba65af3

Please sign in to comment.