Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fe3740e

Browse files
committedFeb 11, 2025·
Fix handling of vaex not being present
1 parent f06ed71 commit fe3740e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tests/test_optional/test_px/test_px_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import warnings
1515

1616

17-
if optional_imports.get_module("vaex"):
17+
if optional_imports.get_module("vaex") is None:
1818
TEST_LIBS = ["polars"]
1919
else:
2020
TEST_LIBS = ["vaex", "polars"]

0 commit comments

Comments
 (0)
Please sign in to comment.