Skip to content

Commit

Permalink
chore: Fix parameter names in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Dec 14, 2023
1 parent af77af4 commit ad40d7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions target_postgres/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def create_empty_table( # type: ignore[override]
"""Create an empty target table.
Args:
full_table_name: the target table name.
table_name: the target table name.
schema: the JSON schema for the new table.
primary_keys: list of key properties.
partition_keys: list of partition keys.
Expand Down Expand Up @@ -424,7 +424,7 @@ def _create_empty_column( # type: ignore[override]
"""Create a new column.
Args:
full_table_name: The target table name.
table_name: The target table name.
column_name: The name of the new column.
sql_type: SQLAlchemy type engine to be used in creating the new column.
Expand Down Expand Up @@ -488,7 +488,7 @@ def _adapt_column_type( # type: ignore[override]
"""Adapt table column type to support the new JSON schema type.
Args:
full_table_name: The target table name.
table_name: The target table name.
column_name: The target column name.
sql_type: The new SQLAlchemy type.
Expand Down Expand Up @@ -719,7 +719,7 @@ def _get_column_type( # type: ignore[override]
"""Get the SQL type of the declared column.
Args:
full_table_name: The name of the table.
table_name: The name of the table.
column_name: The name of the column.
Returns:
Expand Down

0 comments on commit ad40d7e

Please sign in to comment.