Skip to content

Commit e278a7e

Browse files
authored
Update 6-store-relationships-in-dictionaries.py
1 parent b8fda62 commit e278a7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: ch09-lists-tuples-and-dictionaries/6-store-relationships-in-dictionaries.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
captains["Discovery"] = "unknown"
2323

2424
# Bonus points: you could instead loop over a list of names to check
25-
# for name in ["Enterprise", "Discovery"]:
25+
# for ship in ["Enterprise", "Discovery"]:
2626
# if not ship in captains:
2727
# captains[ship] = "unknown"
2828

0 commit comments

Comments
 (0)