extend the main function

This commit is contained in:
Andreas Zweili 2021-12-19 18:48:18 +01:00
parent faec2e08be
commit aa98d610b0
1 changed files with 3 additions and 0 deletions

View File

@ -42,6 +42,9 @@ def encrypt_disk():
def main():
disks = read_disks()
create_menu(disks)
disk_to_format = disks[get_disk_to_format()]
format_disk(disk_to_format)
if __name__ == "__main__":