From 645d59a43a7562b65196ae0aec26b8e2624784fa Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Wed, 31 Jan 2024 23:47:32 +0000 Subject: [PATCH] Remove now outdated comment --- python/cudf/cudf/_lib/aggregation.pyx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/python/cudf/cudf/_lib/aggregation.pyx b/python/cudf/cudf/_lib/aggregation.pyx index 82db0eb3ecb..127580a6ec6 100644 --- a/python/cudf/cudf/_lib/aggregation.pyx +++ b/python/cudf/cudf/_lib/aggregation.pyx @@ -385,10 +385,6 @@ cdef class GroupbyAggregation: )) # scan aggregations - # TODO: Probably want to manage aggregations that are only supported by - # groupby scan and not groupby aggregate by putting them in separate - # namespaces so that aggregate users don't try and access something like - # cumcount. @classmethod def cumcount(cls): return cls.count(False)