Skip to content

Commit

Permalink
fix: add upstream deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cbini committed Aug 23, 2024
1 parent dcd678a commit 57da806
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion src/teamster/code_locations/kipptaf/overgrad/assets.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from dagster import AutomationCondition, DynamicPartitionsDefinition
from dagster import AssetKey, AutomationCondition, DynamicPartitionsDefinition

from teamster.code_locations.kipptaf import CODE_LOCATION
from teamster.code_locations.kipptaf.overgrad.schema import UNIVERSITY_SCHEMA
Expand All @@ -12,6 +12,12 @@
automation_condition=(
AutomationCondition.missing() & ~AutomationCondition.in_progress()
),
deps=[
AssetKey(["kippcamden", "overgrad", "admissions"]),
AssetKey(["kippcamden", "overgrad", "followings"]),
AssetKey(["kippnewark", "overgrad", "admissions"]),
AssetKey(["kippnewark", "overgrad", "followings"]),
],
)

assets = [
Expand Down
2 changes: 1 addition & 1 deletion src/teamster/libraries/overgrad/assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def build_overgrad_asset(
schema,
partitions_def=None,
automation_condition=None,
deps=None,
deps: list | None = None,
):
key = [code_location, "overgrad", name]

Expand Down

0 comments on commit 57da806

Please sign in to comment.