Skip to content

Commit cb067dd

Browse files
committed
cryticparser: start names with caps
1 parent 69cf42c commit cb067dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crytic_compile/cryticparser/cryticparser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ def _init_hardhat(parser: ArgumentParser) -> None:
433433
Args:
434434
parser (ArgumentParser): argparser where the cli flags are added
435435
"""
436-
group_hardhat = parser.add_argument_group("hardhat options")
436+
group_hardhat = parser.add_argument_group("Hardhat options")
437437
group_hardhat.add_argument(
438438
"--hardhat-ignore-compile",
439439
help="Do not run hardhat compile",
@@ -465,7 +465,7 @@ def _init_foundry(parser: ArgumentParser) -> None:
465465
Args:
466466
parser (ArgumentParser): argparser where the cli flags are added
467467
"""
468-
group_foundry = parser.add_argument_group("foundry options")
468+
group_foundry = parser.add_argument_group("Foundry options")
469469
group_foundry.add_argument(
470470
"--foundry-ignore-compile",
471471
help="Do not run foundry compile",

0 commit comments

Comments
 (0)