Skip to content

Commit bc182c3

Browse files
committed
fixed refactor bug
1 parent 55a1391 commit bc182c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ellar_cli/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def build_typers() -> t.Any:
6161

6262
if meta_ and meta_.has_meta:
6363
module_configs = AppFactory.get_all_modules(
64-
ModuleSetup(meta_.import_root_module()) # type: ignore
64+
ModuleSetup(meta_.import_root_module())
6565
)
6666
reflector = Reflector()
6767

ellar_cli/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import typing as t
22

3-
from ellar.serializer import Serializer
3+
from ellar.core.serializer import Serializer
44
from pydantic import Field
55

66

0 commit comments

Comments
 (0)