Skip to content

Commit

Permalink
removed unneeded full_table_name=
Browse files Browse the repository at this point in the history
  • Loading branch information
BuzzCutNorman committed Nov 11, 2022
1 parent 535575f commit cede5ac
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions singer_sdk/connectors/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,9 +477,7 @@ def table_exists(self, full_table_name: str) -> bool:
Returns:
True if table exists, False if not, None if unsure or undetectable.
"""
_, schema_name, table_name = self.parse_full_table_name(
full_table_name=full_table_name
)
_, schema_name, table_name = self.parse_full_table_name(full_table_name)

return cast(
bool,
Expand Down

0 comments on commit cede5ac

Please sign in to comment.