Skip to content

Commit

Permalink
Fix async call
Browse files Browse the repository at this point in the history
  • Loading branch information
MattyTheHacker committed Nov 8, 2024
1 parent 27a94b7 commit ea41234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/committee_actions_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ async def autocomplete_get_user_action_ids(ctx: TeXBotAutocompleteContext) -> Se
name=f"{action.description} ({action.status})",
value=str(action.id),
)
for action in AssignedCommitteeAction.objects.select_related().all()
async for action in AssignedCommitteeAction.objects.select_related().all()
}

return {
Expand Down

0 comments on commit ea41234

Please sign in to comment.