6 lines
154 B
Python
6 lines
154 B
Python
|
import time
|
||
|
|
||
|
def getAgeInSeconds(updateTimeInSeconds :int):
|
||
|
now = int(time.time())
|
||
|
ageInSeconds :int = now - updateTimeInSeconds
|
||
|
return ageInSeconds
|