Skip to content

Commit

Permalink
missing query field in database
Browse files Browse the repository at this point in the history
  • Loading branch information
jeandemeusy committed Apr 29, 2024
1 parent e4075ca commit 97aebcc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ct-app/database/database_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ def __init__(self):
password=self.params.pg.password,
host=self.params.pg.host,
port=self.params.pg.port,
database=self.params.pg.database
database=self.params.pg.database,
query={}
)

self.engine = create_engine(url)
Expand Down

0 comments on commit 97aebcc

Please sign in to comment.