Skip to content

Commit f6bf25a

Browse files
author
Nico Cernek
committed
linting
1 parent 821ef91 commit f6bf25a

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
@@ -181,14 +181,14 @@ Backwards incompatible API changes
181181

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

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

0 commit comments

Comments
 (0)