Ensure consistent program naming

(`python -m freqtrade --version`)
This commit is contained in:
Matthias
2024-04-27 08:48:40 +02:00
parent dd04c51c42
commit 73905b33ad
2 changed files with 8 additions and 2 deletions
+4 -1
View File
@@ -20,7 +20,10 @@ logger = logging.getLogger("ft_rest_client")
def add_arguments(args: Any = None):
parser = argparse.ArgumentParser()
parser = argparse.ArgumentParser(
prog="freqtrade-client",
description="Client for the freqtrade REST API",
)
parser.add_argument("command",
help="Positional argument defining the command to execute.",
nargs="?"