File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -580,10 +580,6 @@ def construct(
580
580
for feature in self .keys + [self .timestamp ]:
581
581
output_df = feature .transform (output_df )
582
582
583
- output_df = self .incremental_strategy .filter_with_incremental_strategy (
584
- dataframe = output_df , start_date = start_date , end_date = end_date
585
- )
586
-
587
583
if self ._windows and end_date is not None :
588
584
# Run aggregations for each window
589
585
agg_list = [
@@ -636,6 +632,10 @@ def construct(
636
632
else :
637
633
output_df = self ._aggregate (output_df , features = self .features )
638
634
635
+ output_df = self .incremental_strategy .filter_with_incremental_strategy (
636
+ dataframe = output_df , start_date = start_date , end_date = end_date
637
+ )
638
+
639
639
output_df = output_df .select (* self .columns ).replace ( # type: ignore
640
640
float ("nan" ), None
641
641
)
You can’t perform that action at this time.
0 commit comments