aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Brody Critchlow <[email protected]>2023-03-15 22:48:36 -0600
committerGravatar GitHub <[email protected]>2023-03-15 22:48:36 -0600
commit628d254e877c03bfc775adc3fa4810488c1481ff (patch)
tree2bfe44855653ed564f9a9a250015f9184719f26c
parentComply to #2419 (diff)
Comply to PEP8
Co-authored-by: Mohammad Ibrahim <[email protected]>
-rw-r--r--bot/resources/tags/in-place.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/resources/tags/in-place.md b/bot/resources/tags/in-place.md
index 61f70256b..0fd672cf0 100644
--- a/bot/resources/tags/in-place.md
+++ b/bot/resources/tags/in-place.md
@@ -11,7 +11,7 @@ A common example of these different concepts is seen in the use of the methods `
# WRONG:
unsorted_list = [3, 1, 2]
-sorted_list = unsorted_list.sort() # This will be None
+sorted_list = unsorted_list.sort() # This will be None
print(sorted_list) # Outputs None. Where did the list go?
list_to_sort = [3, 1, 2]