This commit is contained in:
Kadir Can Ozden 2026-02-21 23:39:22 +09:00 committed by GitHub
commit 99989c5c97
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -167,4 +167,4 @@ class Timestamp:
:rtype: Timestamp
"""
return Timestamp(seconds=int(dt.timestamp()), nanoseconds=dt.microsecond * 1000)
return Timestamp(seconds=int(dt.timestamp() // 1), nanoseconds=dt.microsecond * 1000)