Skip to content

Commit 842d6d5

Browse files
committed
fix: event schema cannot be string anymore
1 parent f9815a6 commit 842d6d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eventsourcingdb/handlers/read_event_types/event_type.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class EventType:
1111
event_type: str
1212
is_phantom: bool
13-
schema: str | dict[str, Any] | None = None
13+
schema: dict[str, Any] | None = None
1414

1515
@staticmethod
1616
def parse(unknown_object: dict) -> Self:

0 commit comments

Comments
 (0)