From 8103a9159ce9dd7f5869dc9634a1a32d56b79404 Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Mon, 28 Mar 2022 14:21:57 -0700 Subject: [PATCH] add accidentally removed comment. (#10526) Adds back a comment that was accidentally removed in #10523. Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) URL: https://github.com/rapidsai/cudf/pull/10526 --- python/cudf/cudf/_lib/column.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/python/cudf/cudf/_lib/column.pyi b/python/cudf/cudf/_lib/column.pyi index 0d61e4f02e5..c38c560b982 100644 --- a/python/cudf/cudf/_lib/column.pyi +++ b/python/cudf/cudf/_lib/column.pyi @@ -73,5 +73,6 @@ class Column: def _mimic_inplace( self, other_col: ColumnBase, inplace=False ) -> Optional[ColumnBase]: ... + # TODO: The val parameter should be Scalar, not ScalarLike @staticmethod def from_scalar(val: ScalarLike, size: int) -> ColumnBase: ...