Skip to content

Commit

Permalink
Type asc/desc operators
Browse files Browse the repository at this point in the history
  • Loading branch information
isra17 committed Oct 24, 2019
1 parent 46008db commit 0df1dc1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sqlalchemy-stubs/sql/operators.pyi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Any, Optional, Text, List, Union
from .selectable import Select as Select
from .elements import BindParameter as BindParameter
from .elements import BindParameter as BindParameter, UnaryExpression

class Operators(object):
def __and__(self, other): ...
Expand Down Expand Up @@ -52,8 +52,8 @@ class ColumnOperators(Operators):
def endswith(self, other, **kwargs): ...
def contains(self, other, **kwargs): ...
def match(self, other, **kwargs): ...
def desc(self): ...
def asc(self): ...
def desc(self) -> UnaryExpression: ...
def asc(self) -> UnaryExpression: ...
def nullsfirst(self): ...
def nullslast(self): ...
def collate(self, collation): ...
Expand Down

0 comments on commit 0df1dc1

Please sign in to comment.