Skip to content

Commit 2bb689f

Browse files
committed
fix mistaken code commit
1 parent 0547023 commit 2bb689f

File tree

1 file changed

+1
-3
lines changed
  • v-next/hardhat/src/internal/cli/help

1 file changed

+1
-3
lines changed

v-next/hardhat/src/internal/cli/help/utils.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,7 @@ export function parseOptions(task: Task): {
6868
const options = [];
6969
const positionalArguments = [];
7070

71-
for (const [optionName, option] of task.options
72-
.entries()
73-
.filter(([, o]) => o.hidden !== true)) {
71+
for (const [optionName, option] of task.options) {
7472
if (option.hidden === true) {
7573
continue;
7674
}

0 commit comments

Comments
 (0)