Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sqlalchemy-stubs/sql/operators.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ColumnOperators(Operators):
def notilike(self, other, escape: Optional[Any] = ...): ...
def is_(self, other): ...
def isnot(self, other): ...
def startswith(self, other, **kwargs): ...
def startswith(self, other: str, **kwargs): ...
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might be useful to add other: str to the following string methods in this PR?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is better to make a separate PR, I will merge this one now.

def endswith(self, other, **kwargs): ...
def contains(self, other, **kwargs): ...
def match(self, other, **kwargs): ...
Expand Down