From 0f1894037d082ad22fc73a45456a92ec5d9764ac Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 3 Jul 2024 11:51:11 +0200 Subject: [PATCH] Increased Args typehint --- freqtrade/commands/arguments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/commands/arguments.py b/freqtrade/commands/arguments.py index 725841a1d..d3c2e2b7c 100755 --- a/freqtrade/commands/arguments.py +++ b/freqtrade/commands/arguments.py @@ -309,7 +309,7 @@ class Arguments: return parsed_arg - def _build_args(self, optionlist, parser): + def _build_args(self, optionlist: List[str], parser) -> None: for val in optionlist: opt = AVAILABLE_CLI_OPTIONS[val] parser.add_argument(*opt.cli, dest=val, **opt.kwargs)