From 3af34594919397e0fc3894fcc778a3f13990506e Mon Sep 17 00:00:00 2001 From: William Andrea <22385371+wjandrea@users.noreply.github.com> Date: Wed, 5 Mar 2025 21:25:43 -0400 Subject: [PATCH] DOC: Fix typo in Timestamp.isoformat repeated word --- pandas/_libs/tslibs/timestamps.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/_libs/tslibs/timestamps.pyx b/pandas/_libs/tslibs/timestamps.pyx index 6b4b90167e625..452ba0fe869ee 100644 --- a/pandas/_libs/tslibs/timestamps.pyx +++ b/pandas/_libs/tslibs/timestamps.pyx @@ -1309,7 +1309,7 @@ cdef class _Timestamp(ABCTimestamp): By default, the fractional part is omitted if self.microsecond == 0 and self._nanosecond == 0. - If self.tzinfo is not None, the UTC offset is also attached, giving + If self.tzinfo is not None, the UTC offset is also attached, giving a full format of 'YYYY-MM-DD HH:MM:SS.mmmmmmnnn+HH:MM'. Parameters