Browse Source
Fixing the last of the spacing errors.
pull/133/head
Justin
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
disco/types/user.py
|
@ -92,7 +92,7 @@ class Secrets(SlottedModel): |
|
|
class Timestamps(SlottedModel): |
|
|
class Timestamps(SlottedModel): |
|
|
start = Field(int) |
|
|
start = Field(int) |
|
|
end = Field(int) |
|
|
end = Field(int) |
|
|
|
|
|
|
|
|
def start_time(self): |
|
|
def start_time(self): |
|
|
return datetime.utcfromtimestamp(self.start / 1000) |
|
|
return datetime.utcfromtimestamp(self.start / 1000) |
|
|
|
|
|
|
|
|