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 723e7f3 commit 359e8edCopy full SHA for 359e8ed
snakemake_interface_executor_plugins/registry/__init__.py
@@ -70,5 +70,6 @@ def collect_plugins(self):
70
# snakemake not present, proceed without adding these plugins
71
return
72
73
- for executor in [local_executor, dryrun_executor, touch_executor]:
74
- self.register_plugin(executor.__name__, executor)
+ self.register_plugin("local", local_executor)
+ self.register_plugin("dryrun", dryrun_executor)
75
+ self.register_plugin("touch", touch_executor)
0 commit comments