Skip to content

Commit 55d2c65

Browse files
authored
CI: resolve conflict mypy and isort (#35339)
1 parent 725900f commit 55d2c65

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pandas/tests/test_algos.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
from numpy.random import RandomState
77
import pytest
88

9-
from pandas._libs import algos as libalgos, groupby as libgroupby, hashtable as ht
9+
from pandas._libs import algos as libalgos, hashtable as ht
10+
from pandas._libs.groupby import group_var_float32, group_var_float64
1011
from pandas.compat.numpy import np_array_datetime64_compat
1112
import pandas.util._test_decorators as td
1213

@@ -1493,7 +1494,7 @@ def test_group_var_constant(self):
14931494
class TestGroupVarFloat64(GroupVarTestMixin):
14941495
__test__ = True
14951496

1496-
algo = staticmethod(libgroupby.group_var_float64)
1497+
algo = staticmethod(group_var_float64)
14971498
dtype = np.float64
14981499
rtol = 1e-5
14991500

@@ -1516,7 +1517,7 @@ def test_group_var_large_inputs(self):
15161517
class TestGroupVarFloat32(GroupVarTestMixin):
15171518
__test__ = True
15181519

1519-
algo = staticmethod(libgroupby.group_var_float32)
1520+
algo = staticmethod(group_var_float32)
15201521
dtype = np.float32
15211522
rtol = 1e-2
15221523

0 commit comments

Comments
 (0)