Skip to content

Commit

Permalink
Remove breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Feb 27, 2025
1 parent 9494730 commit cce9a86
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions python/cudf/cudf/core/column_accessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,6 @@ def _select_by_label_list_like(self, key: tuple) -> Self:
def _select_by_label_grouped(self, key: abc.Hashable) -> Self:
result = self._grouped_data[key]
if isinstance(result, column.ColumnBase):
breakpoint()
# self._grouped_data[key] = self._data[key] so skip validation
return type(self)(
data={key: result},
Expand All @@ -587,7 +586,6 @@ def _select_by_label_grouped(self, key: abc.Hashable) -> Self:
result = dict(_to_flat_dict_inner(result))
if not isinstance(key, tuple):
key = (key,)
breakpoint()
return self.__class__(
result,
multiindex=self.nlevels - len(key) > 1,
Expand Down

0 comments on commit cce9a86

Please sign in to comment.