Skip to content

Commit

Permalink
Circular import fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
yoavkt committed Jan 12, 2025
1 parent 68b5a6d commit 452d399
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
- name: Install packagge
run: |
python -m pip install --upgrade pip pytest pytest-cov
python -m pip install -e .
python -m pip install -e .[task_scripts]
- name: Create tasks needed for testing
Expand Down
7 changes: 3 additions & 4 deletions scripts/tasks_retrieval/gene2gene_task_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,14 @@

import click
import pandas as pd

from gene_benchmark.tasks import dump_task_definitions

from .task_retrieval import (
from task_retrieval import (
read_table,
report_task_single_col,
verify_source_of_data,
)

from gene_benchmark.tasks import dump_task_definitions

DATA_URL = (
"https://raw.githubusercontent.com/jingcheng-du/Gene2vec/master/predictionData"
)
Expand Down

0 comments on commit 452d399

Please sign in to comment.