Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
emgeee committed Dec 9, 2024
1 parent 9db072c commit c32b1d9
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
1 change: 1 addition & 0 deletions py-denormalized/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ dev = [
"jupyterlab>=4.3.0",
"pdoc>=15.0.0",
"pip>=24.3.1",
"ruff>=0.8.2",
]
docs = [
"pdoc>=15.0.0",
Expand Down
4 changes: 3 additions & 1 deletion py-denormalized/python/denormalized/feast_data_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ def _sink_to_feast(rb: pa.RecordBatch):
try:
feature_store.push(source_name, df, to=PushMode.ONLINE)
except Exception as e:
logger.error(f"Failed to push to Feast feature store: {e}", exc_info=True)
logger.error(
f"Failed to push to Feast feature store: {e}", exc_info=True
)

self.ds.sink_python(_sink_to_feast)
29 changes: 28 additions & 1 deletion py-denormalized/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c32b1d9

Please sign in to comment.