From fe4ec124284dc3b86b20f2ead49d7ddaf209638f Mon Sep 17 00:00:00 2001 From: rhinemann Date: Wed, 25 Mar 2026 19:51:10 +0100 Subject: [PATCH] Add type hints --- MapView/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MapView/main.py b/MapView/main.py index d3ac0c4..e03bb6f 100644 --- a/MapView/main.py +++ b/MapView/main.py @@ -37,8 +37,8 @@ class MapViewApp(App): self.car_markers = dict() # додати необхідні змінні - self.bump_markers = [] - self.pothole_markers = [] + self.bump_markers: list[MapMarker] = [] + self.pothole_markers: list[MapMarker] = [] def on_start(self): """