Skip to content

Commit 8da00f9

Browse files
committed
remove repetitive import statement
1 parent 49f339d commit 8da00f9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

heudiconv/tests/test_utils.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
import os
33
import os.path as op
44

5-
from ..utils import JSONDecodeError, create_tree, save_json
6-
75
from heudiconv.utils import (
86
get_known_heuristics_with_descriptions,
97
get_heuristic_description,
108
load_heuristic,
119
json_dumps_pretty,
12-
load_json)
10+
load_json,
11+
create_tree,
12+
save_json,
13+
JSONDecodeError)
1314

1415
import pytest
1516
from .utils import HEURISTICS_PATH

0 commit comments

Comments
 (0)