Skip to content

Commit 0606922

Browse files
fix: return correct value for next_seconds_between_status_checks
1 parent ed879a5 commit 0606922

File tree

1 file changed

+1
-1
lines changed
  • snakemake_interface_executor_plugins/executors

1 file changed

+1
-1
lines changed

snakemake_interface_executor_plugins/executors/remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def next_seconds_between_status_checks(self):
300300
if self._next_seconds_between_status_checks is None:
301301
return self.workflow.remote_execution_settings.seconds_between_status_checks
302302
else:
303-
self._next_seconds_between_status_checks
303+
return self._next_seconds_between_status_checks
304304

305305
@next_seconds_between_status_checks.setter
306306
def next_seconds_between_status_checks(self, value):

0 commit comments

Comments
 (0)