From c2ae631d8461dcbb644f95336da18e3e125f5a6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laura=20Kl=C3=BCnder?= Date: Tue, 17 Dec 2024 23:23:27 +0000 Subject: [PATCH] fix type hinting import --- src/c3nav/routing/route.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c3nav/routing/route.py b/src/c3nav/routing/route.py index f0657b21..9dacb36a 100644 --- a/src/c3nav/routing/route.py +++ b/src/c3nav/routing/route.py @@ -11,7 +11,7 @@ from c3nav.mapdata.models import Location from c3nav.routing.models import RouteOptions if TYPE_CHECKING: - from c3nav.routing.router import Router, RouterLocation, RouterNodeAndEdge + from c3nav.routing.router import Router, RouterPoint, RouterNodeAndEdge def describe_location(location, locations):