"name" property of the EntityStub is optional in some implementations.
Requiring a hard presence for this value results in a key error if the implementation does not make use of it.
This is the case especially with Events V2
This quick fix just replaces raw_element["name"] with raw_element.get("name")
"name" property of the EntityStub is optional in some implementations. Requiring a hard presence for this value results in a key error if the implementation does not make use of it. This is the case especially with Events V2
This quick fix just replaces
raw_element["name"]
withraw_element.get("name")