We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5243dab commit 1337bb6Copy full SHA for 1337bb6
tests/unit/test_timestream.py
@@ -4,9 +4,10 @@
4
import pytest
5
6
import awswrangler as wr
7
-from awswrangler._distributed import EngineEnum, MemoryFormatEnum
8
9
-if wr.engine.get() == EngineEnum.RAY and wr.memory_format.get() == MemoryFormatEnum.MODIN:
+from .._utils import is_ray_modin
+
10
+if is_ray_modin:
11
import modin.pandas as pd
12
else:
13
import pandas as pd
0 commit comments