Fix flake8 error, refs #344, #345

This commit is contained in:
Simon Willison 2021-11-29 14:29:46 -08:00
commit 1f8178f7e4

View file

@ -532,7 +532,7 @@ class Database:
)
self.conn.execute("drop table {}".format(table_name))
return True
except Exception as e:
except:
return False
@property