Skip to content

Commit

Permalink
use local import for data
Browse files Browse the repository at this point in the history
  • Loading branch information
iskandr committed Feb 9, 2024
1 parent 23246d4 commit 1499904
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_ensembl_gtf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from data import data_path
from gtfparse import read_gtf

from .data import data_path

ENSEMBL_GTF_PATH = data_path("ensembl_grch37.head.gtf")

Expand Down
2 changes: 1 addition & 1 deletion tests/test_read_stringtie_gtf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from gtfparse import read_gtf
from data import data_path
from .data import data_path

B16_GTF_PATH = data_path("B16.stringtie.head.gtf")

Expand Down
2 changes: 1 addition & 1 deletion tests/test_refseq_gtf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from gtfparse import read_gtf
from data import data_path
from .data import data_path

REFSEQ_GTF_PATH = data_path("refseq.ucsc.small.gtf")

Expand Down

0 comments on commit 1499904

Please sign in to comment.