We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23f66f9 commit a1b21e3Copy full SHA for a1b21e3
sqlmesh/core/scheduler.py
@@ -730,9 +730,8 @@ def _find_upstream_dependencies(
730
parent_sid: SnapshotId,
731
intervals_per_snapshot: t.Dict[str, Intervals],
732
snapshots_to_create: t.Set[SnapshotId],
733
- cache: t.Optional[t.Dict[SnapshotId, t.Set[SchedulingUnit]]] = None,
+ cache: t.Dict[SnapshotId, t.Set[SchedulingUnit]],
734
) -> t.Set[SchedulingUnit]:
735
- cache = cache or {}
736
if parent_sid not in self.snapshots:
737
return set()
738
if parent_sid in cache:
0 commit comments