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 91679b5 commit cf22842Copy full SHA for cf22842
snakemake_interface_software_deployment_plugins/__init__.py
@@ -64,7 +64,7 @@ def wrapper(self, *args, **kwargs):
64
key = (self.__class__, self.within)
65
if key in self._cache:
66
return self._cache[key]
67
- value = func(*args, **kwargs)
+ value = func(self, *args, **kwargs)
68
self._cache[key] = value
69
return value
70
0 commit comments