Skip to content

Commit 1d7f73e

Browse files
committed
Fix pydantic v1 import error
1 parent 548f005 commit 1d7f73e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sqlmodel/ext/asyncio/async_model.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
from typing import Any, ClassVar, Coroutine, Dict, Tuple, Type
22

3-
from pydantic._internal._repr import Representation
43
from sqlalchemy.util.concurrency import greenlet_spawn
54

65
from ... import SQLModel
7-
from ..._compat import get_annotations
6+
from ..._compat import Representation, get_annotations
87
from ...main import SQLModelMetaclass
98

109

0 commit comments

Comments
 (0)