Skip to content

Commit

Permalink
chore[tool]: add help text for hex-ir CLI flag (#3942)
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey authored Apr 15, 2024
1 parent 074073f commit 39b46ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vyper/cli/vyper_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down

0 comments on commit 39b46ca

Please sign in to comment.