Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
drop unnecessary REQUEST_ID column (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
wintonzheng authored Aug 27, 2023
1 parent 6948afa commit ee41f08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wyvern-ai"
version = "0.0.12"
version = "0.0.13"
description = ""
authors = ["Wyvern AI <info@wyvern.ai>"]
readme = "README.md"
Expand Down
1 change: 1 addition & 0 deletions wyvern/feature_store/feature_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,7 @@ async def get_historical_features(
right_on=["REQUEST_ID", entity_identifier_type.upper()],
how="left",
)
df.drop(columns=["REQUEST_ID"], inplace=True)

feast_requests = build_historical_registry_feature_requests(
store=store,
Expand Down

0 comments on commit ee41f08

Please sign in to comment.