Skip to content

Commit

Permalink
fix: add owners_ban_addresses_job definition
Browse files Browse the repository at this point in the history
  • Loading branch information
loicguillois committed Jan 2, 2025
1 parent 6c9e1ad commit bdaa153
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions analytics/dagster/src/definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
from .assets import populate_owners_ban_addresses

from .resources.ban_config import ban_config_resource
from .jobs.owners_ban_addresses_job import owners_ban_addresses_job

warnings.filterwarnings("ignore", category=dagster.ExperimentalWarning)

Expand Down Expand Up @@ -64,4 +65,5 @@
schedules=[
daily_refresh_schedule,
],
jobs=[owners_ban_addresses_job]
)
2 changes: 1 addition & 1 deletion analytics/dagster/src/jobs/owners_ban_addresses_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"ban_config": ban_config_resource,
}
)
def ban_address_job():
def owners_ban_addresses_job():
housings_without_address()

0 comments on commit bdaa153

Please sign in to comment.