Skip to content

Commit 616b9f2

Browse files
committed
fix lint errors
1 parent 4c401e7 commit 616b9f2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/core/series.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3011,6 +3011,7 @@ def compare(
30113011
* 0, or 'index' : Resulting differences are stacked vertically
30123012
with rows drawn alternately from self and other.
30133013
* 1, or 'columns' : Resulting differences are aligned horizontally
3014+
30143015
with columns drawn alternately from self and other.
30153016
30163017
keep_shape : bool, default False
@@ -3085,6 +3086,7 @@ def compare(
30853086
3 d b
30863087
4 e e
30873088
"""
3089+
30883090
return super().compare(
30893091
other=other,
30903092
align_axis=align_axis,
@@ -4653,7 +4655,7 @@ def transform(
46534655
- function
46544656
- string function name
46554657
- list-like of functions and/or function names, e.g. ``[np.exp, 'sqrt']``
4656-
- dict-like of axis labels -> functions, function names or list-like of such.
4658+
- dict-like of axis labels -> functions, function names or list-like of such
46574659
46584660
axis : {0 or 'index'}
46594661
Unused. Parameter needed for compatibility with DataFrame.

0 commit comments

Comments
 (0)