Skip to content

Commit 359e8ed

Browse files
fix: use correct names when collecting builtin plugins (#75)
1 parent 723e7f3 commit 359e8ed

File tree

1 file changed

+3
-2
lines changed
  • snakemake_interface_executor_plugins/registry

1 file changed

+3
-2
lines changed

snakemake_interface_executor_plugins/registry/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,6 @@ def collect_plugins(self):
7070
# snakemake not present, proceed without adding these plugins
7171
return
7272

73-
for executor in [local_executor, dryrun_executor, touch_executor]:
74-
self.register_plugin(executor.__name__, executor)
73+
self.register_plugin("local", local_executor)
74+
self.register_plugin("dryrun", dryrun_executor)
75+
self.register_plugin("touch", touch_executor)

0 commit comments

Comments
 (0)