Skip to content

Commit

Permalink
fix set typing
Browse files Browse the repository at this point in the history
  • Loading branch information
pnadolny13 committed Oct 3, 2023
1 parent 14031f2 commit e0451b6
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 @@ -59,7 +59,7 @@ def __init__(
self._config: dict[str, t.Any] = config or {}
self._sqlalchemy_url: str | None = sqlalchemy_url or None
self._table_cols_cache: dict[str, dict[str, sqlalchemy.Column]] = {}
self._schema_cache: set = {}
self._schema_cache: t.Set[str] = set()

@property
def config(self) -> dict:
Expand Down

0 comments on commit e0451b6

Please # to comment.