Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove some unused imports.
Yes, I was going through most files and cleaned slightly.
  • Loading branch information
gusmith committed Oct 31, 2019
commit dce2b0b2de963b78ffbd4e7185abf56d4e8f6cc9
2 changes: 1 addition & 1 deletion backend/entityservice/tasks/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from entityservice.cache import progress as progress_cache
from entityservice.cache.active_runs import set_run_state_active, is_run_missing
from entityservice.database import DBConn, check_project_exists, get_run, get_run_state_for_update
from entityservice.database import update_run_set_started, get_dataprovider_ids
from entityservice.database import update_run_set_started
from entityservice.errors import RunDeleted, ProjectDeleted
from entityservice.tasks.base_task import TracedTask
from entityservice.tasks.comparing import create_comparison_jobs
Expand Down
1 change: 0 additions & 1 deletion backend/entityservice/tasks/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from entityservice.settings import Config as config
from entityservice.tasks.base_task import TracedTask
from entityservice.tasks.permutation import save_and_permute
from entityservice.utils import similarity_matrix_from_csv_bytes


@celery.task(base=TracedTask, ignore_result=True, args_as_tags=('project_id', 'run_id'))
Expand Down