diff --git a/singer_sdk/tap_base.py b/singer_sdk/tap_base.py index 0abc7356a..8b025a1f8 100644 --- a/singer_sdk/tap_base.py +++ b/singer_sdk/tap_base.py @@ -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.