From 5737baca524c621efad8983a6b795fe25cac7404 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Tue, 13 Aug 2024 12:49:54 -0700 Subject: [PATCH] TYP: Fix NatType.combine type definition --- pandas/_libs/tslibs/nattype.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/_libs/tslibs/nattype.pyi b/pandas/_libs/tslibs/nattype.pyi index f49e894a0bfec..b802efcd1e891 100644 --- a/pandas/_libs/tslibs/nattype.pyi +++ b/pandas/_libs/tslibs/nattype.pyi @@ -102,6 +102,7 @@ class NaTType: ambiguous: bool | Literal["raise"] | NaTType = ..., nonexistent: TimestampNonexistent = ..., ) -> NaTType: ... + @classmethod def combine(cls, date: date_, time: time_) -> NoReturn: ... @property def tzinfo(self) -> None: ...