Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix flake8 errors
Signed-off-by: niklasvm <niklasvm@gmail.com>
  • Loading branch information
niklasvm committed Aug 17, 2022
commit 3704f4abc7342d656ec853be1d50b2031b6b3e04
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
from feast.infra.offline_stores import offline_utils
from feast.infra.offline_stores.contrib.spark_offline_store.spark_source import (
SavedDatasetSparkStorage,
SparkOptions,
SparkSource,
)
from feast.infra.offline_stores.offline_store import (
Expand Down Expand Up @@ -247,11 +246,11 @@ def offline_write_batch(
).save(feature_view.batch_source.path)
elif feature_view.batch_source.query:
raise NotImplementedError(
f"offline_write_batch not implemented for batch sources specified by query"
"offline_write_batch not implemented for batch sources specified by query"
)
else:
raise NotImplementedError(
f"offline_write_batch not implemented for batch sources specified by a table"
"offline_write_batch not implemented for batch sources specified by a table"
)

@staticmethod
Expand Down