Skip to content

Commit

Permalink
Added optional typing to select_async to fix -> (default has type 'No…
Browse files Browse the repository at this point in the history
…ne', argument has type 'str')
  • Loading branch information
aurthurm committed Jan 30, 2024
1 parent 60b4287 commit db446dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlalchemy_mixins/activerecordasync.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ActiveRecordMixinAsync(InspectionMixin, SessionMixin):

@classmethod
async def select_async(cls,
stmt:str=None,
stmt:Optional[str] = None,
filters: Optional[Dict[str, Any]] = None,
sort_attrs: Optional[Iterable[str]] = None,
schema: Optional[dict] = None
Expand Down

0 comments on commit db446dc

Please sign in to comment.