From 03c9cc57e6c27b5fae55e461276189f80b51fe42 Mon Sep 17 00:00:00 2001 From: Nataliia Zakharchuk <62181026+Nattalli@users.noreply.github.com> Date: Thu, 15 Sep 2022 09:32:17 +0300 Subject: [PATCH] Update checklist.md --- checklist.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/checklist.md b/checklist.md index 1dfee56e..a749d093 100644 --- a/checklist.md +++ b/checklist.md @@ -30,7 +30,7 @@ Good example: ```python my_dict = { -"greeting": "Good morning, have a nice day!", + "greeting": "Good morning, have a nice day!", "answer": "Good morning, thanks!" } @@ -40,14 +40,14 @@ Also a good example: ```python my_dict = {"greeting": "Good morning, have a nice day!", - "answer": "Good morning, thanks!"} + "answer": "Good morning, thanks!"} ``` Bad example: ```python my_dict = {"greeting": "Good morning, have a nice day!", - "answer": "Good morning, thanks!" + "answer": "Good morning, thanks!" } ```