Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
madsbk committed Oct 26, 2022
1 parent 3a66e1d commit e31cc6a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/cudf/cudf/core/buffer/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,13 @@ def as_device_buffer_like(


def get_columns(obj: Any) -> List[Column]:
"""Return all columns in `obj` (no duplicates)"""

from cudf._lib.column import Column
from cudf.core.column_accessor import ColumnAccessor
from cudf.core.frame import Frame
from cudf.core.indexed_frame import IndexedFrame

"""Return all columns in `obj` (no duplicates)"""
found: List[Column] = []
found_ids: Set[int] = set()

Expand Down

0 comments on commit e31cc6a

Please sign in to comment.