Skip to content

Commit cf732e1

Browse files
committed
chore: Fix parameter names in docstrings
1 parent 723e1fa commit cf732e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

target_postgres/connector.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ def create_empty_table( # type: ignore[override]
332332
"""Create an empty target table.
333333
334334
Args:
335-
full_table_name: the target table name.
335+
table_name: the target table name.
336336
schema: the JSON schema for the new table.
337337
primary_keys: list of key properties.
338338
partition_keys: list of partition keys.
@@ -427,7 +427,7 @@ def _create_empty_column( # type: ignore[override]
427427
"""Create a new column.
428428
429429
Args:
430-
full_table_name: The target table name.
430+
table_name: The target table name.
431431
column_name: The name of the new column.
432432
sql_type: SQLAlchemy type engine to be used in creating the new column.
433433
@@ -491,7 +491,7 @@ def _adapt_column_type( # type: ignore[override]
491491
"""Adapt table column type to support the new JSON schema type.
492492
493493
Args:
494-
full_table_name: The target table name.
494+
table_name: The target table name.
495495
column_name: The target column name.
496496
sql_type: The new SQLAlchemy type.
497497
@@ -722,7 +722,7 @@ def _get_column_type( # type: ignore[override]
722722
"""Get the SQL type of the declared column.
723723
724724
Args:
725-
full_table_name: The name of the table.
725+
table_name: The name of the table.
726726
column_name: The name of the column.
727727
728728
Returns:

0 commit comments

Comments
 (0)