We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e453d10 commit 18852f4Copy full SHA for 18852f4
pandas/_libs/tslib.pyx
@@ -1267,7 +1267,7 @@ cdef class _Timestamp(datetime):
1267
return datetime.__sub__(self, other)
1268
1269
cdef int64_t _maybe_convert_value_to_local(self):
1270
- """Convert UTC i8 value to local i8 value if tz exists"
+ """Convert UTC i8 value to local i8 value if tz exists"""
1271
val = self.value
1272
if self.tz is not None and not _is_utc(self.tz):
1273
val = tz_convert_single(self.value, 'UTC', self.tz)
0 commit comments