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 e5079ee commit 4a16d19Copy full SHA for 4a16d19
simpleflow/swf/mapper/models/event/base.py
@@ -42,10 +42,11 @@ class Event:
42
:param raw_data: raw_event representation provided by amazon service
43
"""
44
45
- _type: str | None
46
- _name: str | None
47
- _attributes_key: str | None
48
- _attributes = Any
+ # These class attributes manipulate instance ones
+ _type: str | None = None
+ _name: str | None = None
+ _attributes_key: str | None = None
49
+ _attributes = None
50
51
excluded_attributes = ("eventId", "eventType", "eventTimestamp")
52
0 commit comments