diff --git a/ijim/interval_map.py b/ijim/interval_map.py index fcbb437..f39024d 100644 --- a/ijim/interval_map.py +++ b/ijim/interval_map.py @@ -4,12 +4,12 @@ from pprint import pformat from typing import Iterable, Generic, TypeVar -from comparable import Comparable -from utils import ( +from .comparable import Comparable +from .utils import ( is_sorted, has_duplicates, ) -from exceptions import ( +from .exceptions import ( IntervalMapUnequalLength, IntervalMapMustBeSorted, IntervalMapNoDuplicates,