Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Namespacing CLI options #860

Closed
wants to merge 19 commits into from
2 changes: 1 addition & 1 deletion data_diff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
def connect_to_table(
db_info: Union[str, dict],
table_name: Union[DbPath, str],
key_columns: str = ("id",),
key_columns: Tuple[str] = ("id",),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks, good catch. You're reminding me that we need to add static type checking to this codebase

thread_count: Optional[int] = 1,
**kwargs,
) -> TableSegment:
Expand Down
Loading
Loading