Skip to content

Commit

Permalink
Merge branch 'espressif:master' into main_work
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2866 authored Apr 2, 2024
2 parents 137d236 + ef8ee8a commit 2ee319a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions espefuse/efuse/base_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,11 @@ def check_efuse_name(efuse_name, efuse_list):
)
burn.add_argument(
"name_value_pairs",
help="Name of efuse register and New value pairs to burn",
help="Name of efuse field and new value pairs to burn. EFUSE_NAME: "
"[{}].".format(", ".join([e.name for e in efuses.efuses])),
action=ActionEfuseValuePair,
nargs="+",
metavar="[EFUSE_NAME VALUE] [{} VALUE".format(
" VALUE] [".join([e.name for e in efuses.efuses])
),
metavar="[EFUSE_NAME VALUE]",
efuse_choices=[e.name for e in efuses.efuses]
+ [name for e in efuses.efuses for name in e.alt_names if name != ""],
efuses=efuses,
Expand Down

0 comments on commit 2ee319a

Please sign in to comment.