Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scratch/crash_course_in_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"


Expand Down