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
File "...python3.7/site-packages/sqlite_utils/db.py", line 292, in create_table
column_type=COLUMN_TYPE_MAPPING[column_type],
KeyError: <class 'collections.OrderedDict'>
The text was updated successfully, but these errors were encountered:
OrderedDict is actually a subclass of dict - so a smart fix would be for this logic to check and see if the type t is a subclass of one of list, tuple or dict.
The text was updated successfully, but these errors were encountered: