Skip to content

Commit

Permalink
fixed review findings
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Oct 13, 2023
1 parent 3d4dcf4 commit 7b7920c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exasol/secret_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def _initialize(self, db_file_found: bool) -> None:
return
_logger.info(f'Creating table "{TABLE_NAME}".')
with self._cursor() as cur:
cur.execute(f"CREATE TABLE {TABLE_NAME} (key, value)")
cur.execute(f"CREATE TABLE {TABLE_NAME} (key TEXT, value TEXT PRIMARY KEY)")

def _use_master_password(self) -> None:
"""
Expand Down

0 comments on commit 7b7920c

Please sign in to comment.