Skip to content

Commit 3760c9d

Browse files
committed
STY: fix indentation again
1 parent 85e83de commit 3760c9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/window/rolling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2290,7 +2290,7 @@ def pipe(
22902290
>>> g = lambda x, arg1: x * 5 / arg1
22912291
>>> f = lambda x: x**4
22922292
>>> df = pd.DataFrame({'A': [1, 2, 3, 4]},
2293-
index=pd.date_range('2012-08-02', periods=4))
2293+
... index=pd.date_range('2012-08-02', periods=4))
22942294
>>> h(g(f(df.rolling("2D")), arg1=1), arg2=2, arg3=3) # doctest: +SKIP
22952295
22962296
You can write

0 commit comments

Comments
 (0)