diff --git a/python/cudf/cudf/pandas/_wrappers/pandas.py b/python/cudf/cudf/pandas/_wrappers/pandas.py index b7c8e92e8db..3c82d571939 100644 --- a/python/cudf/cudf/pandas/_wrappers/pandas.py +++ b/python/cudf/cudf/pandas/_wrappers/pandas.py @@ -174,7 +174,7 @@ def _DataFrame__dir__(self): "__arrow_array__": arrow_array_method, "__cuda_array_interface__": cuda_array_interface, "__iter__": custom_iter, - "dt": _AccessorAttr(DatetimeProperties), + "dt": _AccessorAttr(CombinedDatetimelikeProperties), "str": _AccessorAttr(StringMethods), "cat": _AccessorAttr(_CategoricalAccessor), "_constructor": _FastSlowAttribute("_constructor"), @@ -208,7 +208,7 @@ def Index__new__(cls, *args, **kwargs): "__array_function__": array_function_method, "__arrow_array__": arrow_array_method, "__cuda_array_interface__": cuda_array_interface, - "dt": _AccessorAttr(DatetimeProperties), + "dt": _AccessorAttr(CombinedDatetimelikeProperties), "str": _AccessorAttr(StringMethods), "cat": _AccessorAttr(_CategoricalAccessor), "__iter__": custom_iter,