literally deleted an extra space
This commit is contained in:
parent
600480b4f4
commit
2df9dc0c62
1 changed files with 1 additions and 1 deletions
2
gui.py
2
gui.py
|
@ -55,7 +55,7 @@ def toggle_listening():
|
|||
def export_data():
|
||||
# Get the file path from the user
|
||||
file_path = filedialog.asksaveasfilename(defaultextension=".txt",
|
||||
filetypes=[("Text files", "*.txt"),
|
||||
filetypes=[("Text files", "*.txt"),
|
||||
("All files", "*.*")])
|
||||
if file_path:
|
||||
with open(file_path, "w") as file:
|
||||
|
|
Loading…
Reference in a new issue