Skip to content

Commit 7a275ce

Browse files
author
Francesc Alted
committed
Fixed a typo
1 parent 93f54aa commit 7a275ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/computation/test_compat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_compat():
2121
try:
2222
import numexpr as ne
2323
ver = ne.__version__
24-
elif ver < LooseVersion('2.4.6'):
24+
if ver < LooseVersion('2.4.6'):
2525
with tm.assert_produces_warning(UserWarning,
2626
check_stacklevel=False):
2727
assert not _NUMEXPR_INSTALLED

0 commit comments

Comments
 (0)