You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following fails using sqlalchemy.Date, works using a custom date field that accepts a single datetime.date object. Appears to stem from match_pk in utils.find_entity, assuming col.type.python_type takes one argument.
Any chance find_entity (here) could handle this without a custom type?
Sorry if this is too long, wasn't sure of a better way to explain. Comment out DateType = MyDateType to get TypeError exception.
The following fails using
sqlalchemy.Date
, works using a custom date field that accepts a singledatetime.date
object. Appears to stem frommatch_pk
inutils.find_entity
, assumingcol.type.python_type
takes one argument.Any chance
find_entity
(here) could handle this without a custom type?Sorry if this is too long, wasn't sure of a better way to explain. Comment out
DateType = MyDateType
to getTypeError
exception.The text was updated successfully, but these errors were encountered: