Skip to content

Commit

Permalink
Merge pull request #131 from slaarti/kwargs_type
Browse files Browse the repository at this point in the history
kwargs missing type
  • Loading branch information
igorbenav authored Jul 26, 2024
2 parents 7705086 + a234018 commit 35eb387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastcrud/crud/fast_crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ async def select(
schema_to_select: Optional[type[BaseModel]] = None,
sort_columns: Optional[Union[str, list[str]]] = None,
sort_orders: Optional[Union[str, list[str]]] = None,
**kwargs,
**kwargs: Any,
) -> Select:
"""
Constructs a SQL Alchemy `Select` statement with optional column selection, filtering, and sorting.
Expand Down

0 comments on commit 35eb387

Please sign in to comment.