diff --git a/disco/types/user.py b/disco/types/user.py index 1f9bd46..20de0b9 100644 --- a/disco/types/user.py +++ b/disco/types/user.py @@ -92,7 +92,7 @@ class Secrets(SlottedModel): class Timestamps(SlottedModel): start = Field(int) end = Field(int) - + def start_time(self): return datetime.utcfromtimestamp(self.start / 1000)