Skip to content
Snippets Groups Projects
Commit 707fe9aa authored by mtu's avatar mtu Committed by mtu
Browse files

Make volatile.py more PEP8-compliant; fix default value

parent 05273b16
No related branches found
No related tags found
No related merge requests found
......@@ -642,17 +642,19 @@ class IntAutoTime(AutoTime):
class ZuluTime(AutoTime):
def __init__(self, diff=None):
self.diff=diff
def __init__(self, diff=0):
self.diff = diff
def _fix(self):
return time.strftime("%y%m%d%H%M%SZ",time.gmtime(time.time()+self.diff))
return time.strftime("%y%m%d%H%M%SZ",
time.gmtime(time.time() + self.diff))
class GeneralizedTime(AutoTime):
def __init__(self, diff=None):
self.diff=diff
def __init__(self, diff=0):
self.diff = diff
def _fix(self):
return time.strftime("%Y%m%d%H%M%SZ",time.gmtime(time.time()+self.diff))
return time.strftime("%Y%m%d%H%M%SZ",
time.gmtime(time.time() + self.diff))
class DelayedEval(VolatileValue):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment