Skip to content

Commit e691c3f

Browse files
committed
Remove comments
1 parent c10c999 commit e691c3f

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

flox/core.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,6 @@ def reindex_(
362362
array: np.ndarray, from_, to, fill_value=None, axis: T_Axis = -1, promote: bool = False
363363
) -> np.ndarray:
364364

365-
# print(f"from: {from_} | to: {to}")
366365
if not isinstance(to, pd.Index):
367366
if promote:
368367
to = pd.Index(to)
@@ -1244,8 +1243,6 @@ def dask_groupby_agg(
12441243
# memory usage (but method="cohorts" would also work to reduce memory in some cases)
12451244

12461245
do_simple_combine = method != "blockwise" and not _is_arg_reduction(agg)
1247-
# print(f"do_simple_combine: {do_simple_combine}, method: {method}")
1248-
# import IPython; IPython.core.debugger.set_trace()
12491246

12501247
if method == "blockwise":
12511248
# use the "non dask" code path, but applied blockwise

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def assert_equal_tuple(a, b):
127127
assert a_ == b_
128128

129129

130-
@pytest.fixture(scope="module", params=["numpy"])
130+
@pytest.fixture(scope="module", params=["flox", "numpy", "numbagg"])
131131
def engine(request):
132132
if request.param == "numba":
133133
try:

0 commit comments

Comments
 (0)