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 1654a41 commit cb0245fCopy full SHA for cb0245f
snakemake_interface_executor_plugins/utils.py
@@ -59,7 +59,12 @@ def format_cli_value(value: Any) -> str:
59
60
61
def join_cli_args(args):
62
- return " ".join(arg for arg in args if arg)
+ try:
63
+ return " ".join(arg for arg in args if arg)
64
+ except TypeError:
65
+ raise TypeError(
66
+ f"bug: join_cli_args expects iterable of strings. Given: {args}"
67
+ )
68
69
70
def url_can_parse(url: str) -> bool:
0 commit comments