Skip to content

Commit

Permalink
continue not return inside the loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohit Chatterjee committed Aug 11, 2024
1 parent 44d7678 commit 68f06a6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def handle(self, *args, **options):
org_dbt = OrgDbt.objects.filter(org=org).first()
if not org_dbt:
print(f"OrgDbt for {org.slug} not found")
return
continue

org_task = get_edr_send_report_task(org, orgdbt=org_dbt, overwrite=True)
if org_task is None:
Expand All @@ -63,7 +63,7 @@ def handle(self, *args, **options):
dbt_project_params, error = gather_dbt_project_params(org)
if error:
print(error)
return
continue

dbt_env_dir = Path(org_dbt.dbt_venv)

Expand Down

0 comments on commit 68f06a6

Please sign in to comment.