pre-commit fu
This commit is contained in:
parent
13d4d38437
commit
4c4cb3ebfd
@ -21,7 +21,6 @@ from pathlib import Path
|
|||||||
from typing import (
|
from typing import (
|
||||||
TYPE_CHECKING,
|
TYPE_CHECKING,
|
||||||
Any,
|
Any,
|
||||||
AsyncGenerator,
|
|
||||||
AsyncIterator,
|
AsyncIterator,
|
||||||
Callable,
|
Callable,
|
||||||
Coroutine,
|
Coroutine,
|
||||||
@ -97,7 +96,12 @@ from reflex.state import (
|
|||||||
code_uses_state_contexts,
|
code_uses_state_contexts,
|
||||||
)
|
)
|
||||||
from reflex.utils import codespaces, console, exceptions, format, prerequisites, types
|
from reflex.utils import codespaces, console, exceptions, format, prerequisites, types
|
||||||
from reflex.utils.exec import is_backend_only, is_prod_mode, is_testing_env, should_skip_compile
|
from reflex.utils.exec import (
|
||||||
|
is_backend_only,
|
||||||
|
is_prod_mode,
|
||||||
|
is_testing_env,
|
||||||
|
should_skip_compile,
|
||||||
|
)
|
||||||
from reflex.utils.imports import ImportVar
|
from reflex.utils.imports import ImportVar
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
"""Handle proxying frontend requests from the backend server."""
|
"""Handle proxying frontend requests from the backend server."""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from contextlib import asynccontextmanager
|
from contextlib import asynccontextmanager
|
||||||
|
Loading…
Reference in New Issue
Block a user