chore: code cleanup, remove redundant if statement

This commit is contained in:
Manuel Schmid 2024-01-14 21:20:13 +01:00
parent 1779fa0f3a
commit eeb57f3ff5
No known key found for this signature in database
GPG Key ID: 32C4F7569B40B84B
1 changed files with 1 additions and 4 deletions

View File

@ -112,10 +112,7 @@ parser.add_argument("--is-windows-embedded-python", action="store_true")
parser.add_argument("--disable-server-info", action="store_true")
if ldm_patched.modules.options.args_parsing:
args = parser.parse_args([])
else:
args = parser.parse_args([])
args = parser.parse_args([])
if args.is_windows_embedded_python:
args.in_browser = True