fix syntax error

This commit is contained in:
Laura Klünder 2024-12-18 21:48:17 +01:00
parent 5729f89762
commit a4a7f02d0b

View file

@ -27,7 +27,7 @@ def describe_location(location, locations):
class RouteNodeWithOptionalEdge(NamedTuple):
node: int | "RouterNode"
node: Union[int, "RouterNode"]
edge: Optional["RouterEdge"]