Skip to content

Commit

Permalink
fixed a doc string template
Browse files Browse the repository at this point in the history
  • Loading branch information
smartvinnetou committed Apr 4, 2020
1 parent b4ffd00 commit e0209f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -7018,11 +7018,11 @@ def isna(self: FrameOrSeries) -> FrameOrSeries:
--------
Show which entries in a DataFrame are NA.
>>> df = pd.DataFrame({'age': [5, 6, np.NaN],
>>> df = pd.DataFrame({{'age': [5, 6, np.NaN],
... 'born': [pd.NaT, pd.Timestamp('1939-05-27'),
... pd.Timestamp('1940-04-25')],
... 'name': ['Alfred', 'Batman', ''],
... 'toy': [None, 'Batmobile', 'Joker']})
... 'toy': [None, 'Batmobile', 'Joker']}})
>>> df
age born name toy
0 5.0 NaT Alfred None
Expand Down

0 comments on commit e0209f5

Please sign in to comment.