Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spond/spond.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ async def get_event(self, uid: str) -> JSONDict:
return await self._get_entity(self._EVENT, uid)

@_SpondBase.require_authentication
async def update_event(self, uid: str, updates: JSONDict) -> JSONDict | None:
async def update_event(self, uid: str, updates: JSONDict) -> list[JSONDict] | None:
"""
Updates an existing event.

Expand Down
Loading