We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed8fe28 commit 9710906Copy full SHA for 9710906
pydra/engine/core.py
@@ -1042,12 +1042,9 @@ def __init__(
1042
# propagating rerun if task_rerun=True
1043
self.propagate_rerun = propagate_rerun
1044
1045
- @property
+ @cached_property
1046
def lzin(self):
1047
- if self._lzin:
1048
- return self._lzin
1049
- self._lzin = LazyIn(self)
1050
+ return LazyIn(self)
1051
1052
def __getattr__(self, name):
1053
if name in self.name2obj:
0 commit comments