Add type hints

This commit is contained in:
2026-03-25 19:51:10 +01:00
parent 8dc8a1f4ba
commit 1e607729e2

View File

@@ -38,8 +38,8 @@ class MapViewApp(App):
self.car_markers = dict() self.car_markers = dict()
# додати необхідні змінні # додати необхідні змінні
self.bump_markers = [] self.bump_markers: list[MapMarker] = []
self.pothole_markers = [] self.pothole_markers: list[MapMarker] = []
def on_start(self): def on_start(self):
""" """