From a2739b714a6084f2c72d41ed47004dfd21caa5f6 Mon Sep 17 00:00:00 2001 From: Robert Howlett Date: Sun, 30 Jul 2017 09:23:09 +0100 Subject: [PATCH] DOC: (de)type the return value of concat (#17079) Was being parsed by Pycharm as being type "type". --- pandas/core/reshape/concat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/reshape/concat.py b/pandas/core/reshape/concat.py index 96603b6adc3b0..e199ec2710367 100644 --- a/pandas/core/reshape/concat.py +++ b/pandas/core/reshape/concat.py @@ -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 -----