From 42075a8c66044e6f826eb6e8bec85b582c85a98e Mon Sep 17 00:00:00 2001 From: Justin <14909116+ThatGuyJustin@users.noreply.github.com> Date: Fri, 5 Apr 2019 13:10:18 -0400 Subject: [PATCH] Fixing the last of the spacing errors. --- disco/types/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)