Skip to content

Commit

Permalink
rename to 'cache_type_to_destination_type'
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Dec 7, 2024
1 parent fe0ce9c commit be9225d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions airbyte/destinations/_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
SNOWFLAKE_PASSWORD_SECRET_NAME = "SNOWFLAKE_PASSWORD"


def cache_class_to_destination_class(
cache_class: type[CacheBase],
) -> type[DestinationSnowflake]:
def cache_type_to_destination_type(
cache_type: type[CacheBase],
) -> type[Destination]:
# TODO: Fixme
return DestinationSnowflake


def destination_class_to_cache_class(
destination_class: type[Destination],
def destination_type_to_cache_type(
destination_type: type[Destination],
) -> type[CacheBase]:
# TODO: Fixme
return SnowflakeCache
Expand Down

0 comments on commit be9225d

Please sign in to comment.