Skip to content

Commit 89c3173

Browse files
authored
Merge pull request #32 from bryanforbes/improve-sql-default-comparator
Improve `sql.default_comparator`
2 parents f4b5a05 + e8e54a8 commit 89c3173

File tree

1 file changed

+4
-18
lines changed

1 file changed

+4
-18
lines changed
Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,6 @@
11
from typing import Any
2+
from typing import Callable
3+
from typing import Dict
4+
from typing import Tuple
25

3-
from . import coercions as coercions
4-
from . import operators as operators
5-
from . import roles as roles
6-
from . import type_api as type_api
7-
from .elements import and_ as and_
8-
from .elements import BinaryExpression as BinaryExpression
9-
from .elements import ClauseList as ClauseList
10-
from .elements import collate as collate
11-
from .elements import CollectionAggregate as CollectionAggregate
12-
from .elements import False_ as False_
13-
from .elements import Null as Null
14-
from .elements import or_ as or_
15-
from .elements import True_ as True_
16-
from .elements import UnaryExpression as UnaryExpression
17-
from .. import exc as exc
18-
from .. import util as util
19-
20-
operator_lookup: Any
6+
operator_lookup: Dict[str, Tuple[Callable[..., Any], ...]]

0 commit comments

Comments
 (0)