Skip to content

Commit 420c08f

Browse files
committed
remove unused imports
1 parent 6db0f10 commit 420c08f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/idom/server/fastapi.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
from fastapi import FastAPI
44

5-
from idom.config import IDOM_DEBUG_MODE
6-
from idom.core.types import RootComponentConstructor
7-
85
from . import starlette
96

107

@@ -28,4 +25,4 @@
2825

2926
def create_development_app() -> FastAPI:
3027
"""Create a development ``FastAPI`` application instance."""
31-
return FastAPI(debug=IDOM_DEBUG_MODE.current)
28+
return FastAPI(debug=True)

0 commit comments

Comments
 (0)