sqlmodel
sqlmodel copied to clipboard
Update imports in sqltypes.py
There's a redundant import which can be fixed with either of these:
from sqlalchemy import CHAR, types
Or:
from sqlalchemy.types import CHAR, TypeDecorator
Cool, thanks @aminalaee! :cake: