From 551076d8414c3b9a18bed9d6c8fd15cd7a1d91de Mon Sep 17 00:00:00 2001 From: Micael Jarniac Date: Tue, 27 Apr 2021 20:03:53 -0300 Subject: [PATCH] fix typo `"this is the not the..."` > `"this is not the..."` --- scratch/crash_course_in_python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scratch/crash_course_in_python.py b/scratch/crash_course_in_python.py index 71608d4a..ec24690d 100644 --- a/scratch/crash_course_in_python.py +++ b/scratch/crash_course_in_python.py @@ -386,7 +386,7 @@ def sum_and_product(x, y): assert not true_equals_false x = None -assert x == None, "this is the not the Pythonic way to check for None" +assert x == None, "this is not the Pythonic way to check for None" assert x is None, "this is the Pythonic way to check for None"