From 893c7c864068519de5fd94077966338a8a217e43 Mon Sep 17 00:00:00 2001 From: Martim Lobao Date: Thu, 8 Jan 2026 14:38:41 +0000 Subject: [PATCH] fix: missing right bracket in list This was causing linting to fail. --- 2025/map/basic_example_comp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2025/map/basic_example_comp.py b/2025/map/basic_example_comp.py index 60569fa..9d7dd83 100644 --- a/2025/map/basic_example_comp.py +++ b/2025/map/basic_example_comp.py @@ -13,7 +13,7 @@ def main() -> None: {"name": "Carol", "age": 35}, ] - adult_names: list[str] = [ + adult_names: list[str] = [] for user in users: if user["age"] >= 18: