Skip to content

Commit

Permalink
Remove xml_file args from WriteConfVarListToUefiVars.py (#420)
Browse files Browse the repository at this point in the history
## Description

There is an unnecessary argument -x in the
`WriteConfVarListToUefiVars.py` script in PR #413


- [x] Impacts functionality?
- [ ] Impacts security?
- [ ] Breaking change?
- [ ] Includes tests?
- [ ] Includes documentation?

## How This Was Tested
python WriteConfVarListToUefiVars.py -l test.vl and it doesn't require
-x arg

## Integration Instructions
N/A
  • Loading branch information
kanechen66 authored Nov 8, 2024
1 parent 9f30d27 commit d342939
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions SetupDataPkg/Tools/WriteConfVarListToUefiVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,6 @@ def option_parser():
help="""Specify the input setting file""",
)

parser.add_argument(
"-x",
"--xml",
dest="xml_file",
required=True,
type=str,
default='""',
help="""Specify the xml file""",
)

arguments = parser.parse_args()

if not os.path.isfile(arguments.setting_file):
Expand Down

0 comments on commit d342939

Please sign in to comment.