Skip to content

Commit 66a64e6

Browse files
Fix CI error / typo
1 parent c8c992d commit 66a64e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/source/user_guide/indexing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1362,8 +1362,8 @@ Of course, expressions can be arbitrarily complex too:
13621362
shorter = df.query('a < b < c and (not bools) or bools > 2')
13631363
13641364
# equivalent in pure Python
1365-
longer = df[(df['a'] < df['b']) & (df['b'] < df['c']) & \
1366-
(~df['bools']) | (df['bools'] > 2)]
1365+
longer = df[(df['a'] < df['b']) & (df['b'] < df['c'])
1366+
& (~df['bools']) | (df['bools'] > 2)]
13671367
13681368
shorter
13691369
longer

0 commit comments

Comments
 (0)