use old typing
This commit is contained in:
parent
a6c7f5241d
commit
4f0807ad4b
@ -179,13 +179,13 @@ class OverlayFragment(Fragment):
|
|||||||
class UnevaluatedPage:
|
class UnevaluatedPage:
|
||||||
"""An uncompiled page."""
|
"""An uncompiled page."""
|
||||||
|
|
||||||
component: Component | ComponentCallable
|
component: Union[Component, ComponentCallable]
|
||||||
route: str
|
route: str
|
||||||
title: str
|
title: str
|
||||||
description: str
|
description: str
|
||||||
image: str
|
image: str
|
||||||
on_load: Union[EventHandler, EventSpec, list[EventHandler | EventSpec], None]
|
on_load: Union[EventHandler, EventSpec, list[EventHandler | EventSpec], None]
|
||||||
meta: list[dict[str, str]]
|
meta: List[Dict[str, str]]
|
||||||
|
|
||||||
|
|
||||||
class App(MiddlewareMixin, LifespanMixin, Base):
|
class App(MiddlewareMixin, LifespanMixin, Base):
|
||||||
|
Loading…
Reference in New Issue
Block a user