We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 505e7a1 commit ed2a0bdCopy full SHA for ed2a0bd
Python/Module4_OOP/Applications_of_OOP.md
@@ -73,7 +73,7 @@ class ShoppingList:
73
items = [items]
74
# only mark items as purchased that are on our list to begin with
75
self._purchased.update(set(items) & self._needed)
76
- # remove all purchased items from out unpurchased set
+ # remove all purchased items from our unpurchased set
77
self._needed.difference_update(self._purchased)
78
79
def list_purchased_items(self):
0 commit comments