Skip to content

Commit 85e83de

Browse files
committed
STY: fix leftover indentation errors
1 parent bdebcad commit 85e83de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/window/rolling.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2211,7 +2211,7 @@ def apply(
22112211
* For ``'cython'`` engine, there are no accepted ``engine_kwargs``
22122212
* For ``'numba'`` engine, the engine can accept ``nopython``, ``nogil``
22132213
and ``parallel`` dictionary keys. The values must either be ``True`` or
2214-
``False``.
2214+
``False``.
22152215
22162216
The default ``engine_kwargs`` for the ``'numba'`` engine is
22172217
``{'nopython': True, 'nogil': False, 'parallel': False}`` and will be
@@ -3155,7 +3155,7 @@ def quantile(
31553155
when the desired quantile lies between two data points `i` and `j`:
31563156
31573157
* linear: `i + (j - i) * fraction`, where `fraction` is the
3158-
fractional part of the index surrounded by `i` and `j`.
3158+
fractional part of the index surrounded by `i` and `j`.
31593159
* lower: `i`.
31603160
* higher: `j`.
31613161
* nearest: `i` or `j` whichever is nearest.

0 commit comments

Comments
 (0)