From b9c90919d021f7b7bfa662de5166ed6d064e32a1 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Wed, 2 Mar 2022 13:46:33 -0600 Subject: [PATCH] Update python/cudf/cudf/core/dataframe.py Co-authored-by: Bradley Dice --- python/cudf/cudf/core/dataframe.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/cudf/cudf/core/dataframe.py b/python/cudf/cudf/core/dataframe.py index 2915c63b938..e667c4a1e58 100644 --- a/python/cudf/cudf/core/dataframe.py +++ b/python/cudf/cudf/core/dataframe.py @@ -1107,7 +1107,6 @@ def __getitem__(self, arg): @annotate("DATAFRAME_SETITEM", color="blue", domain="cudf_python") def __setitem__(self, arg, value): """Add/set column by *arg or DataFrame*""" - # import pdb;pdb.set_trace() if isinstance(arg, DataFrame): # not handling set_item where arg = df & value = df if isinstance(value, DataFrame):