Add a systray based GUI o:

This commit is contained in:
Kat Inskip 2023-09-09 13:27:06 -07:00
parent d894d7176c
commit 96f1ee3583
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
8 changed files with 198 additions and 12 deletions

View file

@ -25,7 +25,7 @@ def download_files(files: list) -> list:
# Close the file
image_file.close()
# Give the user data about the downloaded image
kv_print(f"Image {str(i+1)}", image_file.name, newline=True)
kv_print(f"Image {str(i+1)}", image_file.name)
# Add the file to the list of downloaded files
downloaded_files.append(image_file.name)
return downloaded_files