Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: reexport brolly stats rollup so celery can find it outside of tests #63

Merged
merged 2 commits into from
Aug 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tasks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from app import celery_app
from tasks.add_to_sendgrid_list import add_to_sendgrid_list_task
from tasks.brolly_stats_rollup import brolly_stats_rollup_task
from tasks.commit_update import commit_update_task
from tasks.compute_comparison import compute_comparison_task
from tasks.delete_owner import delete_owner_task
Expand Down
1 change: 0 additions & 1 deletion tasks/brolly_stats_rollup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import datetime
import json
import logging
import uuid # TODO remove

import httpx
from shared.celery_config import brolly_stats_rollup_task_name
Expand Down
Loading