Skip to content

Commit 28171c0

Browse files
committed
Fix: Default value for the models_to_backfill in the Plan Application Request
1 parent fdf15ee commit 28171c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlmesh/schedulers/airflow/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class PlanApplicationRequest(PydanticModel):
4949
users: t.List[User]
5050
is_dev: bool
5151
forward_only: bool
52-
models_to_backfill: t.Optional[t.Set[str]]
52+
models_to_backfill: t.Optional[t.Set[str]] = None
5353
end_bounded: bool
5454
ensure_finalized_snapshots: bool
5555
directly_modified_snapshots: t.List[SnapshotId]

0 commit comments

Comments
 (0)