Skip to content

Commit ad40d7e

Browse files
committed
chore: Fix parameter names in docstrings
1 parent af77af4 commit ad40d7e

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
@@ -329,7 +329,7 @@ def create_empty_table( # type: ignore[override]
329329
"""Create an empty target table.
330330
331331
Args:
332-
full_table_name: the target table name.
332+
table_name: the target table name.
333333
schema: the JSON schema for the new table.
334334
primary_keys: list of key properties.
335335
partition_keys: list of partition keys.
@@ -424,7 +424,7 @@ def _create_empty_column( # type: ignore[override]
424424
"""Create a new column.
425425
426426
Args:
427-
full_table_name: The target table name.
427+
table_name: The target table name.
428428
column_name: The name of the new column.
429429
sql_type: SQLAlchemy type engine to be used in creating the new column.
430430
@@ -488,7 +488,7 @@ def _adapt_column_type( # type: ignore[override]
488488
"""Adapt table column type to support the new JSON schema type.
489489
490490
Args:
491-
full_table_name: The target table name.
491+
table_name: The target table name.
492492
column_name: The target column name.
493493
sql_type: The new SQLAlchemy type.
494494
@@ -719,7 +719,7 @@ def _get_column_type( # type: ignore[override]
719719
"""Get the SQL type of the declared column.
720720
721721
Args:
722-
full_table_name: The name of the table.
722+
table_name: The name of the table.
723723
column_name: The name of the column.
724724
725725
Returns:

0 commit comments

Comments
 (0)