unused varrible fix
This commit is contained in:
parent
71c583cce3
commit
e993b2ef25
@ -446,7 +446,7 @@ class UiManager(object):
|
||||
return self.__ui.promptFor(prompt)
|
||||
|
||||
def formatTime(self, timeInSeconds):
|
||||
value = round(timeInSeconds)
|
||||
timeInSeconds = round(timeInSeconds)
|
||||
weeks = timeInSeconds // 604800
|
||||
days = (timeInSeconds % 604800) // 86400
|
||||
hours = (timeInSeconds % 86400) // 3600
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user