That gets called with all the types in that nested union but now the type checker can’t help you if GoogleRoute and Metaroute have different attribute names or that .append isn’t a method on sequences but is on lists.
Like that unwieldy nested union already exists in your code, adding the type just documents it and the type checker makes you handle all the cases.
Is there something specific about imports that don’t work with type alises?
Routes = Union[GooglyRoutes, MetaRoutes]
Where, GooglyRoutes=Union[List[CloudyRoutes], Sequence[AdseyRoutes]]
Where CloudyRoutes = Union[RouteContainers]
And then they'd import these types all over the python repo creating all kinds of import issues. Fml.