Skip to content

Commit

Permalink
Format.
Browse files Browse the repository at this point in the history
Signed-off-by: Aloysius Lim <[email protected]>
  • Loading branch information
aloysius-lim committed Jan 3, 2025
1 parent 5091f0f commit 84c355f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ def test_historical_features_field_mapping(
timestamp_field="event_timestamp",
created_timestamp_column="created",
# Map original "id" column to "driver_id" join key
field_mapping={"id": "driver_id"}
field_mapping={"id": "driver_id"},
)

driver = Entity(name="driver", join_keys=["driver_id"])
Expand All @@ -710,7 +710,7 @@ def test_historical_features_field_mapping(
entities=[driver],
schema=[
Field(name="driver_id", dtype=String),
Field(name="avg_daily_trips", dtype=Int32)
Field(name="avg_daily_trips", dtype=Int32),
],
source=driver_stats_data_source,
)
Expand Down

0 comments on commit 84c355f

Please sign in to comment.