Fix PersistentState constructor

This commit is contained in:
simon987 2023-04-10 17:01:42 -04:00
parent e267bbf1c8
commit 3bd9f03996
2 changed files with 2 additions and 2 deletions

View File

@ -278,7 +278,7 @@ class PersistentState:
def __init__(self, dbfile="state.db", logger=None, table_factory=Table, **dbargs):
self.dbfile = dbfile
self.logger = logger
if dbargs is None:
if dbargs is None or dbargs == {}:
dbargs = {"timeout": 30000}
self.dbargs = dbargs
self._table_factory = table_factory

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="hexlib",
version="1.85",
version="1.86",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",