Skip to content

Commit 725e338

Browse files
Trailing whitespace pandas-dev#2
1 parent 87334d0 commit 725e338

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: doc/source/whatsnew/v1.0.0.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -605,11 +605,11 @@ a list of items should be used instead. (:issue:`23566`) For example:
605605
g[('B',)]
606606
607607
# tuple of multiple keys, returns DataFrameGroupBy, raises FutureWarning
608-
g[('B','C')]
608+
g[('B', 'C')]
609609
610610
# multiple keys passed directly, returns DataFrameGroupBy, raises FutureWarning
611611
# (implicitly converts the passed strings into a single tuple)
612-
g['B','C']
612+
g['B', 'C']
613613
614614
# proper way, returns DataFrameGroupBy
615615
g[['B', 'C']]

0 commit comments

Comments
 (0)