Skip to content

Commit 8cd7c17

Browse files
committed
Fix TypedDict on py3.7
1 parent bae753d commit 8cd7c17

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs_src/advanced/column_types/tutorial002.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
from datetime import UTC
55
except ImportError:
66
UTC = None
7-
from typing import TypedDict
8-
97
from sqlalchemy import PickleType
108
from sqlmodel import Field, Session, SQLModel, create_engine, select
9+
from typing_extensions import TypedDict
1110

1211

1312
class ModelOutput(TypedDict):

0 commit comments

Comments
 (0)