From 15fd7ad86d09ebbc0486cee1cf332ede2e615d42 Mon Sep 17 00:00:00 2001 From: Dan Norman Date: Thu, 20 Jul 2023 11:38:27 -0700 Subject: [PATCH] add _tap_connector type hint --- singer_sdk/tap_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.