From c29be48cacb73bb6e453ad1d359db85af8531e3b Mon Sep 17 00:00:00 2001 From: croneter Date: Sun, 2 May 2021 14:35:24 +0200 Subject: [PATCH] Fix Alexa and RuntimeError: dictionary keys changed during iteration --- resources/lib/companion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/companion.py b/resources/lib/companion.py index bb068159..910d1dec 100644 --- a/resources/lib/companion.py +++ b/resources/lib/companion.py @@ -49,7 +49,7 @@ def convert_alexa_to_companion(dictionary): """ The params passed by Alexa must first be converted to Companion talk """ - for key in dictionary: + for key in list(dictionary): if key in v.ALEXA_TO_COMPANION: dictionary[v.ALEXA_TO_COMPANION[key]] = dictionary[key] del dictionary[key]