Corrected indentation (mixed spaces and tabs)

This commit is contained in:
Anton Hvornum 2021-04-27 12:26:59 +02:00 committed by GitHub
parent fa9a08b86d
commit 1be405aa77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -186,8 +186,8 @@ def ask_user_questions():
# packages installed by a profile may depend on audio and something may get installed anyways, not much we can do about that. # packages installed by a profile may depend on audio and something may get installed anyways, not much we can do about that.
# we will not try to remove packages post-installation to not have audio, as that may cause multiple issues # we will not try to remove packages post-installation to not have audio, as that may cause multiple issues
archinstall.arguments['audio'] = None archinstall.arguments['audio'] = None
# Ask what kernel user wants: # Ask what kernel user wants:
while True: while True:
kernel = generic_select(["linux", "linux-lts", "linux-zen", "continue"], "choose a kernel:") kernel = generic_select(["linux", "linux-lts", "linux-zen", "continue"], "choose a kernel:")
if (archinstall.arguments.get("kernels", None) == None): if (archinstall.arguments.get("kernels", None) == None):
@ -384,4 +384,4 @@ def perform_installation(mountpoint):
pass pass
ask_user_questions() ask_user_questions()
perform_installation_steps() perform_installation_steps()