Commit e00862dd authored by Jason Madden's avatar Jason Madden

lint

parent 37a1b0ff
...@@ -81,6 +81,7 @@ class FailureSpawnedLink(SpawnedLink): ...@@ -81,6 +81,7 @@ class FailureSpawnedLink(SpawnedLink):
if not source.successful(): if not source.successful():
return SpawnedLink.__call__(self, source) return SpawnedLink.__call__(self, source)
class _lazy(object): class _lazy(object):
def __init__(self, func): def __init__(self, func):
...@@ -92,7 +93,7 @@ class _lazy(object): ...@@ -92,7 +93,7 @@ class _lazy(object):
func, name = self.data func, name = self.data
value = func(inst) value = func(inst)
inst.__dict__[name]= value inst.__dict__[name] = value
return value return value
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment