From 4fee66c90b9e4a4e3608752b945be0716e52caac Mon Sep 17 00:00:00 2001 From: garetht Date: Fri, 1 Jul 2016 19:04:36 -0400 Subject: [PATCH] Make the 'symmetric' argument to SQLAlchemy's between optional. (#327) --- third_party/2.7/sqlalchemy/sql/operators.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/2.7/sqlalchemy/sql/operators.pyi b/third_party/2.7/sqlalchemy/sql/operators.pyi index 1b33d003a..5ae39cd50 100644 --- a/third_party/2.7/sqlalchemy/sql/operators.pyi +++ b/third_party/2.7/sqlalchemy/sql/operators.pyi @@ -27,7 +27,7 @@ class ColumnOperators(Operators): def nullsfirst(self): ... def nullslast(self): ... def collate(self, collation): ... - def between(self, cleft, cright, symmetric: bool): ... + def between(self, cleft, cright, symmetric: bool = ...): ... def distinct(self): ... def __lt__(self, other): ...