From 9ae0e590b5ea93a9c07d71b55b593e0fcc973bc6 Mon Sep 17 00:00:00 2001 From: Kevin Tindall Date: Tue, 6 Feb 2018 14:10:45 -0600 Subject: use absolute imports everywhere (#1362) --- kafka/protocol/commit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kafka/protocol/commit.py') diff --git a/kafka/protocol/commit.py b/kafka/protocol/commit.py index 9d744c7..31fc237 100644 --- a/kafka/protocol/commit.py +++ b/kafka/protocol/commit.py @@ -1,7 +1,7 @@ from __future__ import absolute_import -from .api import Request, Response -from .types import Array, Int8, Int16, Int32, Int64, Schema, String +from kafka.protocol.api import Request, Response +from kafka.protocol.types import Array, Int8, Int16, Int32, Int64, Schema, String class OffsetCommitResponse_v0(Response): -- cgit v1.2.1