Skip to content

Commit 287ca5e

Browse files
committed
Resolved ruff formatting error
1 parent 99a5ddd commit 287ca5e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/core/arrays/base.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1069,13 +1069,13 @@ def interpolate(
10691069
--------
10701070
>>> arr = pd.arrays.NumpyExtensionArray(np.array([0, np.nan, 2, np.nan, 4]))
10711071
>>> arr.interpolate(
1072-
... method='linear',
1072+
... method="linear",
10731073
... axis=0,
10741074
... index=pd.Index(range(len(arr))),
10751075
... limit=None,
1076-
... limit_direction='forward',
1076+
... limit_direction="forward",
10771077
... limit_area=None,
1078-
... copy=True
1078+
... copy=True,
10791079
... )
10801080
<NumpyExtensionArray>
10811081
[0.0, 1.0, 2.0, 3.0, 4.0]

0 commit comments

Comments
 (0)