(selected_path)
| 1437 | dialog.destroy() |
| 1438 | |
| 1439 | def update_entry(selected_path): |
| 1440 | if selected_path: |
| 1441 | local_entry.delete(0, tk.END) |
| 1442 | local_entry.insert(0, selected_path) |
| 1443 | local_entry.config(foreground="white") # Ensure text is white |
| 1444 | |
| 1445 | dialog = Toplevel(root) |
| 1446 | dialog.title("Select Option") |
no outgoing calls
no test coverage detected