sqlmodel icon indicating copy to clipboard operation
sqlmodel copied to clipboard

Update imports in sqltypes.py

Open aminalaee opened this issue 4 years ago • 0 comments

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

aminalaee avatar Mar 17 '22 10:03 aminalaee

Cool, thanks @aminalaee! :cake:

tiangolo avatar Aug 27 '22 23:08 tiangolo