diff --git a/sqlite_utils/db.py b/sqlite_utils/db.py index 8f38330..8d22e0c 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -72,10 +72,7 @@ if np: # If pandas is available, add more types if pd: - COLUMN_TYPE_MAPPING.update( - { - pd.Timestamp: "TEXT" - }) + COLUMN_TYPE_MAPPING.update({pd.Timestamp: "TEXT"}) class AlterError(Exception):