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!" } ```