Skip to content

Commit

Permalink
chore: Update SnowflakeSink type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Sep 16, 2024
1 parent b68beb3 commit a7b8699
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions target_snowflake/sinks.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from target_snowflake.connector import SnowflakeConnector

if t.TYPE_CHECKING:
from singer_sdk import PluginBase, SQLConnector
from singer_sdk import PluginBase

DEFAULT_BATCH_CONFIG = {
"encoding": {"format": "jsonl", "compression": "gzip"},
Expand All @@ -40,7 +40,7 @@ def __init__(
stream_name: str,
schema: dict,
key_properties: list[str] | None,
connector: SQLConnector | None = None,
connector: SnowflakeConnector | None = None,
) -> None:
"""Initialize Snowflake Sink."""
self.target = target
Expand Down

0 comments on commit a7b8699

Please sign in to comment.