index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Daniel Girtler <blackrabbit256@gmail.com> | 2022-07-26 18:46:50 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-26 10:46:50 +0200 |
commit | 9194f6d85965f435f8d0ae44ba20e73cc761eb44 (patch) | |
tree | 4e3b3a1ee3fbe65ad9dbc1ff83df7178404c63be /archinstall/lib/luks.py | |
parent | 5c3c1312a49e1c110d4c5825fbb8242868544900 (diff) |
-rw-r--r-- | archinstall/lib/luks.py | 6 |
diff --git a/archinstall/lib/luks.py b/archinstall/lib/luks.py index ac480b11..7e4534d8 100644 --- a/archinstall/lib/luks.py +++ b/archinstall/lib/luks.py @@ -22,9 +22,9 @@ from .disk.btrfs import BTRFSPartition class luks2: def __init__(self, - partition :Partition, - mountpoint :str, - password :str, + partition: Partition, + mountpoint: Optional[str], + password: Optional[str], key_file :Optional[str] = None, auto_unmount :bool = False, *args :str, |