Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit 34f1975

Browse files
author
ARF
committed
fix docstring
1 parent c5577c0 commit 34f1975

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bquery/transformers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ def apply(self, ctable_, node, user_dict):
5454

5555

5656
class InOperatorTransformer(QueryTransformer):
57-
"""A :class:`QueryTransformer` that converts comparisons with `in`
58-
operators into expressions using `==` and `!=`.
57+
"""A :class:`QueryTransformer` that converts comparisons with `in` and
58+
`not in` operators into expressions using `==` and `!=`.
5959
6060
Example:
6161
`my_col in ['ABC', 'DEF']` is transformed into
62-
`(my_col == 'ABC' | my_col == 'DEF')`
62+
`(my_col == 'ABC') | (my_col == 'DEF')`
6363
6464
This is useful as Numexpr currently does not support `in` operators."""
6565

0 commit comments

Comments
 (0)