From 1f8178f7e41f64965195c1320d310032d783a8b1 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 29 Nov 2021 14:29:46 -0800 Subject: [PATCH] Fix flake8 error, refs #344, #345 --- sqlite_utils/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite_utils/db.py b/sqlite_utils/db.py index fea1051..a2c40e1 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -532,7 +532,7 @@ class Database: ) self.conn.execute("drop table {}".format(table_name)) return True - except Exception as e: + except: return False @property