Skip to content

Commit

Permalink
remove mypy ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
haleemur committed Aug 2, 2024
1 parent b505697 commit e30c08d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singer_sdk/connectors/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ def get_column_add_ddl(
compiled = create_column_clause.compile(self._engine).string
return sa.DDL(
"ALTER TABLE %(table_name)s ADD COLUMN %(create_column_clause)s",
{ # type: ignore[arg-type]
{
"table_name": table_name,
"create_column_clause": compiled,
},
Expand Down

0 comments on commit e30c08d

Please sign in to comment.