MCPcopy Create free account
hub / github.com/Mrinank-Bhowmick/python-beginner-projects / clear_entries

Function clear_entries

projects/Budget-manager/main.py:64–72  ·  view source on GitHub ↗

Clears all input fields.

()

Source from the content-addressed store, hash-verified

62
63
64def 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.

Callers 1

add_transactionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected