Skip to content

Commit 03c5534

Browse files
committed
style: fixing unintentional modifications in test_query_eval.py
1 parent 161acb9 commit 03c5534

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/frame/test_query_eval.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1140,7 +1140,9 @@ def test_query_with_nested_special_character(self, parser, engine):
11401140
[">=", operator.ge],
11411141
],
11421142
)
1143-
def test_query_lex_compare_strings(self, parser, engine, op, func):
1143+
def test_query_lex_compare_strings(
1144+
self, parser, engine, op, func
1145+
):
11441146
a = Series(np.random.default_rng(2).choice(list("abcde"), 20))
11451147
b = Series(np.arange(a.size))
11461148
df = DataFrame({"X": a, "Y": b})

0 commit comments

Comments
 (0)