()
| 1420 | button.pack(pady=20) |
| 1421 | |
| 1422 | def select_output_dir(): |
| 1423 | folder_selected = filedialog.askdirectory() |
| 1424 | output_entry.delete(0, tk.END) |
| 1425 | output_entry.insert(0, folder_selected) |
| 1426 | output_entry.config(foreground="white") # Ensure text is white |
| 1427 | |
| 1428 | def select_local_file(): |
| 1429 | def choose_file(): |
nothing calls this directly
no outgoing calls
no test coverage detected