From 867f0a7da68ffde1db3314642291fcad3dc50f77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D8=A3=D8=AD=D9=85=D8=AF=20=D8=A7=D9=84=D9=85=D8=AD=D9=85?= =?UTF-8?q?=D9=88=D8=AF=D9=8A=20=28Ahmed=20El-Mahmoudy=29?= Date: Mon, 16 Mar 2026 00:11:50 +0100 Subject: [PATCH] Fix typo --- ch07-comprehensions/e29b3_age_in_months.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch07-comprehensions/e29b3_age_in_months.py b/ch07-comprehensions/e29b3_age_in_months.py index 1055b33..e4cbf88 100755 --- a/ch07-comprehensions/e29b3_age_in_months.py +++ b/ch07-comprehensions/e29b3_age_in_months.py @@ -5,5 +5,5 @@ def age_in_months(list_of_people): return [dict(**one_person, age_in_months=one_person['age'] * 12) - for one_person in mylist + for one_person in list_of_people if one_person['age'] <= 20]