Skip to content

Commit

Permalink
Merge pull request #34 from ts7ming/test
Browse files Browse the repository at this point in the history
fix sqlite
  • Loading branch information
ts7ming committed Jun 6, 2024
2 parents b3ba395 + 172f0c4 commit 8eac2fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pyqueen/io/sqldb.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
class SqlDB:
def __init__(self, conn_package=None, db_type=None, host=None, username=None, password=None, port=None, db_name=None, jdbc_url=None,
keep_conn=False, conn_params=None):
if password is None:
password = ''
self.__conn = None
self.__engine = None
self.__base_param = {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='pyqueen',
version='1.1.3',
version='1.1.4',
url='https://github.com/ts7ming/pyqueen.git',
description='Rule your Data',
long_description=open("README.md", encoding='utf-8').read(),
Expand Down

0 comments on commit 8eac2fd

Please sign in to comment.