Skip to content

Commit

Permalink
call decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Feb 19, 2024
1 parent 059c3f1 commit 281b200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakemake_storage_plugin_fs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def latency_wait(f):
def wrapper(self, *args, **kwargs):
return retry(
tries=2, delay=self.provider.settings.latency_wait, logger=get_logger()
)(f)
)(f)(self, *args, **kwargs)

return wrapper

Expand Down

0 comments on commit 281b200

Please sign in to comment.