Fix Alexa and RuntimeError: dictionary keys changed during iteration
This commit is contained in:
parent
966cf6f526
commit
c29be48cac
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ def convert_alexa_to_companion(dictionary):
|
||||||
"""
|
"""
|
||||||
The params passed by Alexa must first be converted to Companion talk
|
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:
|
if key in v.ALEXA_TO_COMPANION:
|
||||||
dictionary[v.ALEXA_TO_COMPANION[key]] = dictionary[key]
|
dictionary[v.ALEXA_TO_COMPANION[key]] = dictionary[key]
|
||||||
del dictionary[key]
|
del dictionary[key]
|
||||||
|
|
Loading…
Reference in a new issue