Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico Cernek committed Jan 1, 2020
1 parent dffedbc commit 258df2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/source/whatsnew/v1.0.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -180,14 +180,14 @@ Backwards incompatible API changes

.. ipython:: python
left_df = pd.DataFrame({"colors": ["blue", "red"]}, index = pd.Index([0, 1]))
right_df = pd.DataFrame({"hats": ["small", "big"]}, index = pd.Index([1, 0]))
left_df = pd.DataFrame({"colors": ["blue", "red"]}, index=pd.Index([0, 1]))
right_df = pd.DataFrame({"hats": ["small", "big"]}, index=pd.Index([1, 0]))
*pandas 0.25.x*

.. ipython:: python
left_df.merge(right_df, left_index=True, right_index=True, how="right")
colors hats
colors hats
0 blue big
1 red small
Expand Down

0 comments on commit 258df2e

Please sign in to comment.