Skip to content

Commit

Permalink
moar lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jreback committed Jul 17, 2019
1 parent e8e0b61 commit d38f7d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -6235,7 +6235,7 @@ def stack(self, level=-1, dropna=True):

def explode(self, column: str) -> "DataFrame":
"""
Transforms each element of a list-like to a row, replicating the
Transform each element of a list-like to a row, replicating the
index values.
.. versionadded:: 0.25.0
Expand Down
4 changes: 2 additions & 2 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -2004,7 +2004,7 @@ def drop_duplicates(self, keep="first", inplace=False):
Examples
--------
Generate an Series with duplicated entries.
Generate a Series with duplicated entries.
>>> s = pd.Series(['lama', 'cow', 'lama', 'beetle', 'lama', 'hippo'],
... name='animal')
Expand Down Expand Up @@ -3634,7 +3634,7 @@ def reorder_levels(self, order):

def explode(self) -> "Series":
"""
Transforms each element of a list-like to a row, replicating the
Transform each element of a list-like to a row, replicating the
index values.
.. versionadded:: 0.25.0
Expand Down

0 comments on commit d38f7d8

Please sign in to comment.