Skip to content

Commit 18852f4

Browse files
committed
Balance triple quotes
1 parent e453d10 commit 18852f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/tslib.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1267,7 +1267,7 @@ cdef class _Timestamp(datetime):
12671267
return datetime.__sub__(self, other)
12681268

12691269
cdef int64_t _maybe_convert_value_to_local(self):
1270-
"""Convert UTC i8 value to local i8 value if tz exists"
1270+
"""Convert UTC i8 value to local i8 value if tz exists"""
12711271
val = self.value
12721272
if self.tz is not None and not _is_utc(self.tz):
12731273
val = tz_convert_single(self.value, 'UTC', self.tz)

0 commit comments

Comments
 (0)