We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f2d1f3 commit cbc6f4eCopy full SHA for cbc6f4e
msb_client/MsbClient.py
@@ -790,7 +790,7 @@ def getSelfDescription(self):
790
e = jsonpickle.decode(
791
jsonpickle.encode(self.events[event], unpicklable=False)
792
)
793
- for key in e.keys():
+ for key in list(e.keys()):
794
if key == "id":
795
e["@id"] = e["id"]
796
del e[key]
@@ -799,7 +799,7 @@ def getSelfDescription(self):
799
if e["dataFormat"] is None:
800
del e["dataFormat"]
801
del e["isArray"]
802
803
current_e_props.append(key)
804
for key in current_e_props:
805
if key not in e_props:
0 commit comments