Compare commits

..

1 Commits

Author SHA1 Message Date
134af55c47 add --lazy switch to remind 2020-01-16 15:16:29 -05:00

4
db.py
View File

@ -20,9 +20,7 @@ class FulviaDB:
def connect(self): def connect(self):
"""Return a raw database connection object.""" """Return a raw database connection object."""
return sqlite3.connect(self.filename, return sqlite3.connect(self.filename, timeout=10)
timeout=10,
detect_types=sqlite3.PARSE_DECLTYPES)
def execute(self, *args, **kwargs): def execute(self, *args, **kwargs):
""" """