Skip to content

Commit

Permalink
chore: fix response model
Browse files Browse the repository at this point in the history
  • Loading branch information
Skelmis committed Jan 4, 2024
1 parent eefaac8 commit 9a4b9ae
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions garven/routers/aggregate.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ async def guild_count(request: Request):


@aggregate_router.get(
"/cached/count", description="Fetch the counts of cached items in each cluster."
,responses={200: {"model": CachedItemsStatistic}},)
"/cached/count",
description="Fetch the counts of cached items in each cluster.",
responses={200: {"model": CachedItemsStatistic}},
)
async def cached_item_counter(request: Request):
z: Server = request.app.zonis
partial_response = False
Expand Down

0 comments on commit 9a4b9ae

Please sign in to comment.