Clears all input fields.
()
| 62 | |
| 63 | |
| 64 | def clear_entries(): |
| 65 | """ |
| 66 | Clears all input fields. |
| 67 | """ |
| 68 | date_entry.delete(0, tk.END) |
| 69 | description_entry.delete(0, tk.END) |
| 70 | amount_entry.delete(0, tk.END) |
| 71 | category_combobox.set("") |
| 72 | category_combobox.config(state="readonly") |
| 73 | |
| 74 | |
| 75 | # Function to update the transaction list. |