From 39b46ca332007df986008edd9e0d48d2a76bd376 Mon Sep 17 00:00:00 2001 From: antazoey Date: Mon, 15 Apr 2024 07:27:27 -0600 Subject: [PATCH] chore[tool]: add help text for `hex-ir` CLI flag (#3942) --- vyper/cli/vyper_compile.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vyper/cli/vyper_compile.py b/vyper/cli/vyper_compile.py index fc5477d3ac..517d4d3594 100755 --- a/vyper/cli/vyper_compile.py +++ b/vyper/cli/vyper_compile.py @@ -136,7 +136,9 @@ def _parse_args(argv): help="Switch to standard JSON mode. Use `--standard-json -h` for available options.", action="store_true", ) - parser.add_argument("--hex-ir", action="store_true") + parser.add_argument( + "--hex-ir", help="Represent integers as hex values in the IR", action="store_true" + ) parser.add_argument( "--path", "-p", help="Set the root path for contract imports", action="append", dest="paths" )