Skip to content

Commit

Permalink
DOC: (de)type the return value of concat (pandas-dev#17079)
Browse files Browse the repository at this point in the history
Was being parsed by Pycharm as being type "type".
  • Loading branch information
jebob committed Jul 30, 2017
1 parent b03f7e5 commit a2739b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/reshape/concat.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def concat(objs, axis=0, join='outer', join_axes=None, ignore_index=False,
Returns
-------
concatenated : type of objects
concatenated : object, type of objs
Notes
-----
Expand Down

2 comments on commit a2739b7

@DavidHowlett
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you fixed a problem it is nice to make a pull request to the original project.

@jebob
Copy link
Owner Author

@jebob jebob commented on a2739b7 Aug 12, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.