Black & Isort changes

This commit is contained in:
2025-10-13 18:00:03 +02:00
parent 9a27cc175c
commit a81316672c
7 changed files with 48 additions and 37 deletions

View File

@@ -3,7 +3,9 @@ def get_confirmation(backup_extension, selected_book):
while True:
confirm = input("Are these settings correct? (y/n): ").strip().lower()
if confirm == "y":
print(f"Starting backup for book: {selected_book['name']} with filetype {backup_extension}.")
print(
f"Starting backup for book: {selected_book['name']} with filetype {backup_extension}."
)
print("Starting now.......")
return True
elif confirm == "n":
@@ -11,4 +13,3 @@ def get_confirmation(backup_extension, selected_book):
return False
else:
print("Please enter 'y' or 'n'.")