Skip to content

Commit 6b8af32

Browse files
committed
fix type annotation for Combinable - it didn't include WhereRaw
1 parent ca944db commit 6b8af32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

piccolo/custom_types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44

55
if t.TYPE_CHECKING: # pragma: no cover
6-
from piccolo.columns.combination import Where, And, Or # noqa
6+
from piccolo.columns.combination import Where, WhereRaw, And, Or # noqa
77

88

9-
Combinable = t.Union["Where", "And", "Or"]
9+
Combinable = t.Union["Where", "WhereRaw", "And", "Or"]
1010
Iterable = t.Iterable[t.Any]
1111

1212

0 commit comments

Comments
 (0)