From 917ce50421efcbedba054ffee5bdabcd57993a1c Mon Sep 17 00:00:00 2001 From: Samuel Laroche Date: Mon, 30 Sep 2019 12:11:29 -0400 Subject: [PATCH] add type str to parameter other --- sqlalchemy-stubs/sql/operators.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlalchemy-stubs/sql/operators.pyi b/sqlalchemy-stubs/sql/operators.pyi index 459919f..403b8ef 100644 --- a/sqlalchemy-stubs/sql/operators.pyi +++ b/sqlalchemy-stubs/sql/operators.pyi @@ -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): ... def endswith(self, other, **kwargs): ... def contains(self, other, **kwargs): ... def match(self, other, **kwargs): ...