From 2c9a8d950980158a27bd4c4cccdc90cdc789e3ca Mon Sep 17 00:00:00 2001 From: Moritz Schubert <35040095+mcnoat@users.noreply.github.com> Date: Sat, 16 Sep 2023 15:51:45 +0000 Subject: [PATCH] complete parameter descriptions for DataFrame.insert's docstring issue: https://github.com/jorisvandenbossche/pydata-amsterdam-pandas-sprint/issues/1 - bullet point item #5: "complete the parameter descriptions" --- pandas/core/frame.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 8fcb91c846826..ce07210e735a4 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -4915,7 +4915,9 @@ def insert( column : str, number, or hashable object Label of the inserted column. value : Scalar, Series, or array-like + Content of the inserted column. allow_duplicates : bool, optional, default lib.no_default + Allow duplicate column labels to be created. See Also --------