literally deleted an extra space

This commit is contained in:
Tristan Smith 2024-06-01 01:43:24 -04:00
parent 600480b4f4
commit 2df9dc0c62

2
gui.py
View file

@ -55,7 +55,7 @@ def toggle_listening():
def export_data(): def export_data():
# Get the file path from the user # Get the file path from the user
file_path = filedialog.asksaveasfilename(defaultextension=".txt", file_path = filedialog.asksaveasfilename(defaultextension=".txt",
filetypes=[("Text files", "*.txt"), filetypes=[("Text files", "*.txt"),
("All files", "*.*")]) ("All files", "*.*")])
if file_path: if file_path:
with open(file_path, "w") as file: with open(file_path, "w") as file: