Skip to content

Commit

Permalink
fix: Removed version func from feature_store.py (#4748)
Browse files Browse the repository at this point in the history
  • Loading branch information
dandawg authored Nov 7, 2024
1 parent 702eebf commit f902bb9
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions sdk/python/feast/feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@
from feast.saved_dataset import SavedDataset, SavedDatasetStorage, ValidationReference
from feast.stream_feature_view import StreamFeatureView
from feast.utils import _utc_now
from feast.version import get_version

warnings.simplefilter("once", DeprecationWarning)

Expand Down Expand Up @@ -171,10 +170,6 @@ def __init__(

self._provider = get_provider(self.config)

def version(self) -> str:
"""Returns the version of the current Feast SDK/CLI."""
return get_version()

def __repr__(self) -> str:
return (
f"FeatureStore(\n"
Expand Down

0 comments on commit f902bb9

Please sign in to comment.