Skip to content

Commit 64e959f

Browse files
committed
Minor style fixes (pandas-devGH-45647)
1 parent ebb0709 commit 64e959f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/tests/window/test_rolling.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
datetime,
33
timedelta,
44
)
5+
import sys
56

67
import numpy as np
78
import pytest
@@ -1737,6 +1738,7 @@ def test_rolling_std_neg_sqrt():
17371738

17381739

17391740
def test_rolling_aggregation_boundary_consistency(rolling_aggregation):
1741+
# GH-45647
17401742
minp, step, width, size, selection = 0, 1, 3, 11, [2, 7]
17411743
s = Series(np.arange(1, 1 + size, dtype=np.float64))
17421744
end = np.arange(width, size, step, dtype=np.int64)
@@ -1748,8 +1750,7 @@ def test_rolling_aggregation_boundary_consistency(rolling_aggregation):
17481750

17491751

17501752
def test_rolling_aggregation_with_unused_elements(rolling_aggregation):
1751-
import sys
1752-
1753+
# GH-45647
17531754
minp, width = 0, 5 # width at least 4 for kurt
17541755
size = 2 * width + 5
17551756
s = Series(np.arange(1, size + 1, dtype=np.float64))

0 commit comments

Comments
 (0)