diff options
author | Batuhan Taskaya <isidentical@gmail.com> | 2022-05-05 21:17:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-05 11:17:24 -0700 |
commit | 76495cbdecc44d9dd2f4aa4196f2e2b9040890c5 (patch) | |
tree | 8efd41826b0dea3f995c68ee049273b9a6237b34 | |
parent | c4d7d05f3b6ca2e5e564e069e3a6bc500cefe54f (diff) |
Hide pretty help (#1384)
-rw-r--r-- | httpie/cli/argparser.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/httpie/cli/argparser.py b/httpie/cli/argparser.py index e388e465..9bf09b3b 100644 --- a/httpie/cli/argparser.py +++ b/httpie/cli/argparser.py @@ -572,12 +572,6 @@ class HTTPieArgumentParser(BaseHTTPieArgumentParser): highlight=False ) - def print_help(self): - from httpie.output.ui import rich_help - - for renderable in rich_help.to_help_message(self.spec): - self.env.rich_console.print(renderable) - def print_usage(self, file): from rich.text import Text from httpie.output.ui import rich_help |