Skip to content

Commit

Permalink
Trailing whitespace pandas-dev#2
Browse files Browse the repository at this point in the history
  • Loading branch information
yehoshuadimarsky committed Jan 2, 2020
1 parent 87334d0 commit 725e338
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/source/whatsnew/v1.0.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -605,11 +605,11 @@ a list of items should be used instead. (:issue:`23566`) For example:
g[('B',)]
# tuple of multiple keys, returns DataFrameGroupBy, raises FutureWarning
g[('B','C')]
g[('B', 'C')]
# multiple keys passed directly, returns DataFrameGroupBy, raises FutureWarning
# (implicitly converts the passed strings into a single tuple)
g['B','C']
g['B', 'C']
# proper way, returns DataFrameGroupBy
g[['B', 'C']]
Expand Down

0 comments on commit 725e338

Please sign in to comment.