Skip to content

Commit

Permalink
fixed typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mbsantiago committed May 17, 2024
1 parent 6f496aa commit 9f97e85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions back/src/whombat/routes/sound_event_annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ async def get_sound_event_annotations(
session: Session,
limit: Limit = 10,
offset: Offset = 0,
filter: SoundEventAnnotationFilter = Depends(
filter: SoundEventAnnotationFilter = Depends( # type: ignore
SoundEventAnnotationFilter
), # type: ignore
),
sort_by: str = "-created_on",
):
"""Get a page of annotation sound_event_annotations."""
Expand Down Expand Up @@ -267,9 +267,9 @@ async def get_scatter_plot_data(
session: Session,
limit: Limit = 1000,
offset: Offset = 0,
filter: SoundEventAnnotationFilter = Depends(
filter: SoundEventAnnotationFilter = Depends( # type: ignore
SoundEventAnnotationFilter
), # type: ignore
),
):
items, count = await get_scatterplot_data(
session,
Expand Down

0 comments on commit 9f97e85

Please sign in to comment.