From 38bf8d4b8a1a72faeae2db4647068357386e7199 Mon Sep 17 00:00:00 2001 From: Timur Dzhalalov Date: Thu, 19 Jan 2023 18:17:44 +0100 Subject: [PATCH] import fix --- ijim/interval_map.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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,