Really fix flake8 error, refs #344, #345

This commit is contained in:
Simon Willison 2021-11-29 14:34:40 -08:00
commit 213a0ff177

View file

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