Skip to content

Commit cf22842

Browse files
fix
1 parent 91679b5 commit cf22842

File tree

1 file changed

+1
-1
lines changed
  • snakemake_interface_software_deployment_plugins

1 file changed

+1
-1
lines changed

snakemake_interface_software_deployment_plugins/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def wrapper(self, *args, **kwargs):
6464
key = (self.__class__, self.within)
6565
if key in self._cache:
6666
return self._cache[key]
67-
value = func(*args, **kwargs)
67+
value = func(self, *args, **kwargs)
6868
self._cache[key] = value
6969
return value
7070

0 commit comments

Comments
 (0)