Skip to content

Commit

Permalink
fix(docs): typo in code without selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
fmichonneau authored and cpcloud committed Jun 2, 2023
1 parent 6a7207c commit b236893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/selectors.py
Expand Up @@ -33,7 +33,7 @@
... [
... t[c] for c in t.columns
... if t[c].type().is_numeric()
... if ("a" in c.get_name() or "cd" in c.get_name())
... if ("a" in c or "cd" in c)
... ]
... )
```
Expand Down

0 comments on commit b236893

Please sign in to comment.