Skip to content

Commit

Permalink
ruff fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marregui committed Sep 30, 2023
1 parent 04579c6 commit e26014c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/questdb_connect/table_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(
ts_col_name: str,
partition_by: PartitionBy = PartitionBy.DAY,
is_wal: bool = True,
dedup_upsert_keys: typing.Tuple[str] = None,
dedup_upsert_keys: typing.Optional[typing.Tuple[str]] = None,
):
sqlalchemy.sql.visitors.Traversible.__init__(self)
self.name = table_name
Expand Down

0 comments on commit e26014c

Please sign in to comment.