From 1297d9397234e715321bf07d865cca1dc6a198db Mon Sep 17 00:00:00 2001 From: Narendra Singh Date: Sat, 22 Feb 2025 11:02:21 -0400 Subject: [PATCH] Update README.md minor readme update --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 573bee0..c08013b 100644 --- a/README.md +++ b/README.md @@ -56,12 +56,12 @@ Calendar = Calendar(root, command=user_command, ...) ##### To retrieve a selected date on the calendar, use the getdate() command: ```python -Calendar.getdate() +selected_date = Calendar.getdate() ``` ##### To retrieve the current date as specified by the operating system, use the getdate_today() command: ```python -Calendar.getdate_today() +date_today = Calendar.getdate_today() ``` ##### To create a checkbox on the calendar, the command is as follows: