From f3f134dd6c3406a7e2d6362765e40291319c6965 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Mon, 13 Sep 2021 15:09:33 -0500 Subject: [PATCH] Update dataframe.py --- 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 4ab9879e9ee..0da31cfe583 100644 --- a/python/cudf/cudf/core/dataframe.py +++ b/python/cudf/cudf/core/dataframe.py @@ -1165,7 +1165,6 @@ def _concat( + [f._data[name] if name in f._data else None for name in names] for f in objs ] - # import pdb;pdb.set_trace() # Get a list of the combined index and table column indices indices = list(range(functools.reduce(max, map(len, columns))))