Skip to content

Commit a7b8699

Browse files
chore: Update SnowflakeSink type annotations
1 parent b68beb3 commit a7b8699

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: target_snowflake/sinks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from target_snowflake.connector import SnowflakeConnector
2222

2323
if t.TYPE_CHECKING:
24-
from singer_sdk import PluginBase, SQLConnector
24+
from singer_sdk import PluginBase
2525

2626
DEFAULT_BATCH_CONFIG = {
2727
"encoding": {"format": "jsonl", "compression": "gzip"},
@@ -40,7 +40,7 @@ def __init__(
4040
stream_name: str,
4141
schema: dict,
4242
key_properties: list[str] | None,
43-
connector: SQLConnector | None = None,
43+
connector: SnowflakeConnector | None = None,
4444
) -> None:
4545
"""Initialize Snowflake Sink."""
4646
self.target = target

0 commit comments

Comments
 (0)