Skip to content

Commit

Permalink
fix circular import
Browse files Browse the repository at this point in the history
Signed-off-by: Chester Ong <chester.ong.ch@gmail.com>
  • Loading branch information
bushwhackr committed Feb 8, 2024
1 parent 4587099 commit 73193af
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions sdk/python/feast/infra/utils/snowflake/snowflake_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
import feast
from feast.errors import SnowflakeIncompleteConfig, SnowflakeQueryUnknownError
from feast.feature_view import FeatureView
from feast.infra.offline_stores.snowflake import SnowflakeOfflineStoreConfig
from feast.infra.online_stores.snowflake import SnowflakeOnlineStoreConfig
from feast.repo_config import RepoConfig

try:
Expand All @@ -47,7 +45,7 @@
class GetSnowflakeConnection:
def __init__(
self,
config: SnowflakeOfflineStoreConfig | SnowflakeOnlineStoreConfig,
config: str,
autocommit=True,
):
self.config = config
Expand Down

0 comments on commit 73193af

Please sign in to comment.