From 16ebbd2d494caabd0eeb502f8a944614b464bb12 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 30 Mar 2020 21:37:50 -0700 Subject: [PATCH] Fix for Black formatting --- sqlite_utils/db.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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):