Skip to content

Commit

Permalink
fix documentation to align with array indices rather than pkeys
Browse files Browse the repository at this point in the history
  • Loading branch information
mathemancer committed Aug 13, 2024
1 parent 27be75c commit 6910525
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mathesar/rpc/records.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,13 @@ class Group(TypedDict):
id: The id of the group. Consistent for same input.
count: The number of items in the group.
results_eq: The value the results of the group equal.
result_indices: The primary key values of group members.
result_indices: The 0-indexed positions of group members in the
results array.
"""
id: int
count: int
results_eq: list[dict]
result_indices: list[Any]
result_indices: list[int]


class GroupingResponse(TypedDict):
Expand Down

0 comments on commit 6910525

Please sign in to comment.