Skip to content

Commit

Permalink
1 more fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidMStraub committed Dec 10, 2024
1 parent 98ff8bf commit e98511e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gramps_webapi/api/resources/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def get_event_participants_profile_for_handle(
handle=handle,
locale=locale,
)
result = {"people": [], "families": []}
result: dict[str, list[dict[str, Any]]] = {"people": [], "families": []}

for role, person in event_participants["people"]:
person_profile = get_person_profile_for_object(
Expand Down

0 comments on commit e98511e

Please sign in to comment.