Skip to content

Commit 258df2e

Browse files
author
Nico Cernek
committed
linting
1 parent dffedbc commit 258df2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/source/whatsnew/v1.0.0.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -180,14 +180,14 @@ Backwards incompatible API changes
180180

181181
.. ipython:: python
182182
183-
left_df = pd.DataFrame({"colors": ["blue", "red"]}, index = pd.Index([0, 1]))
184-
right_df = pd.DataFrame({"hats": ["small", "big"]}, index = pd.Index([1, 0]))
183+
left_df = pd.DataFrame({"colors": ["blue", "red"]}, index=pd.Index([0, 1]))
184+
right_df = pd.DataFrame({"hats": ["small", "big"]}, index=pd.Index([1, 0]))
185185
186186
*pandas 0.25.x*
187187

188188
.. ipython:: python
189189
left_df.merge(right_df, left_index=True, right_index=True, how="right")
190-
colors hats
190+
colors hats
191191
0 blue big
192192
1 red small
193193

0 commit comments

Comments
 (0)