Skip to content

Commit 3c9ee07

Browse files
committed
fix: unused imports
1 parent d9c9061 commit 3c9ee07

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

tests/test_regression.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
"""Testing conversion with conversion saved on datalad"""
2-
import os.path as op
32
import json
43
from glob import glob
54

tests/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def gen_heudiconv_args(datadir, outdir, subject, heuristic_file, xargs=None):
2828

2929
def fetch_data(tmpdir, subject):
3030
"""Fetches some test dicoms using datalad"""
31-
targetdir = os.path.join(tmpdir, 'QA')
31+
targetdir = op.join(tmpdir, 'QA')
3232
api.install(path=targetdir,
3333
source='///dbic/QA')
3434
api.get('{}/sourcedata/{}'.format(targetdir, subject))

0 commit comments

Comments
 (0)