Skip to content

Commit e26a8ab

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs_src/advanced/column_types/tutorial002.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from datetime import UTC
55
except ImportError:
66
UTC = None
7-
from typing import TypedDict
7+
from typing_extensions import TypedDict
88

99
from sqlalchemy import PickleType
1010
from sqlmodel import Field, Session, SQLModel, create_engine, select

0 commit comments

Comments
 (0)