Skip to content

Commit 2d5c34a

Browse files
committed
🐛 fix v8 bug for snakemake help
1 parent 0f41844 commit 2d5c34a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/snk_cli/subcommands/run.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ def _print_snakemake_help(value: bool):
6565
>>> RunApp._print_snakemake_help(True)
6666
"""
6767
if value:
68-
import snakemake
69-
70-
snakemake.main("-h")
68+
execute_snakemake("-h")
7169

7270
def run(
7371
self,

0 commit comments

Comments
 (0)