Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/guided.py
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 15:18:46 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 15:18:46 -0400
commitf7642786c9e169245fae52d8754b9d68f2507cb7 (patch)
tree6a02d6a4952af4c2578425ee799def8337fd63c8 /examples/guided.py
parent55b09aa1eb4e5ec83d826b8a3dd10670d674aad7 (diff)
Remove some redundant parenthesis
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index a1a49448..e9873ef0 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -104,7 +104,7 @@ def ask_user_questions():
if not old_password:
old_password = input(f'Enter the old encryption password for {partition}: ')
- if (autodetected_filesystem := partition.detect_inner_filesystem(old_password)):
+ if autodetected_filesystem := partition.detect_inner_filesystem(old_password):
new_filesystem = autodetected_filesystem
else:
archinstall.log("Could not auto-detect the filesystem inside the encrypted volume.", fg='red')