Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg committed Mar 17, 2023
1 parent 98b295b commit eef7480
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async def get_everyone_group(self) -> GroupAtDB:
result = await conn.execute(
sa.select([groups]).where(groups.c.type == GroupType.EVERYONE)
)
row = result.first()
row = await result.first()
if not row:
raise RepositoryError(f"{GroupType.EVERYONE} groups was never initialized")
return GroupAtDB.from_orm(row)
Expand Down

0 comments on commit eef7480

Please sign in to comment.