From 86de92667891f9a2b5c09b5a438d5374287323bc Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Sun, 3 Apr 2022 07:20:55 +0200 Subject: [PATCH] Print help when no args are provided to python -m discord --- discord/__main__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/discord/__main__.py b/discord/__main__.py index acf9601ed..9d18b3f0f 100644 --- a/discord/__main__.py +++ b/discord/__main__.py @@ -56,6 +56,8 @@ def show_version() -> None: def core(parser: argparse.ArgumentParser, args: argparse.Namespace) -> None: if args.version: show_version() + else: + parser.print_help() _bot_template = """#!/usr/bin/env python3