Skip to content
Merged
Prev Previous commit
Next Next commit
fix linting
Signed-off-by: HaoXuAI <sduxuhao@gmail.com>
  • Loading branch information
HaoXuAI committed Apr 18, 2025
commit 4285b5fbba49a0e84e79a76569807930ad33aae8
4 changes: 3 additions & 1 deletion sdk/python/feast/infra/offline_stores/dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,9 @@ def evaluate_offline_job():
if start_date or end_date:
if start_date and end_date:
source_df = source_df[
source_df[timestamp_field].between(start_date, end_date, inclusive="left")
source_df[timestamp_field].between(
start_date, end_date, inclusive="left"
)
]
elif start_date:
source_df = source_df[source_df[timestamp_field] >= start_date]
Expand Down
Loading