Skip to content

Commit

Permalink
fix: use correct names when collecting builtin plugins (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester authored Oct 4, 2024
1 parent 723e7f3 commit 359e8ed
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions snakemake_interface_executor_plugins/registry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,6 @@ def collect_plugins(self):
# snakemake not present, proceed without adding these plugins
return

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

0 comments on commit 359e8ed

Please sign in to comment.