Skip to content

Commit

Permalink
add _tap_connector type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
BuzzCutNorman committed Jul 20, 2023
1 parent eb350fe commit 15fd7ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singer_sdk/tap_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ class SQLTap(Tap):
# Stream class used to initialize new SQL streams from their catalog declarations.
default_stream_class: type[SQLStream]

_tap_connector = None
_tap_connector: SQLConnector | None = None

def __init__(self, *args: t.Any, **kwargs: t.Any) -> None:
"""Initialize the SQL tap.
Expand Down

0 comments on commit 15fd7ad

Please sign in to comment.