Add type hints

This commit is contained in:
2026-03-25 19:51:10 +01:00
parent 805b2658d4
commit fe4ec12428

View File

@@ -37,8 +37,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):
""" """