diff options
Diffstat (limited to 'kafka/protocol.py')
-rw-r--r-- | kafka/protocol.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kafka/protocol.py b/kafka/protocol.py index f985479..c2b017e 100644 --- a/kafka/protocol.py +++ b/kafka/protocol.py @@ -8,12 +8,12 @@ from kafka.codec import ( from kafka.common import ( BrokerMetadata, PartitionMetadata, Message, OffsetAndMessage, ProduceResponse, FetchResponse, OffsetResponse, - OffsetCommitResponse, OffsetFetchResponse + OffsetCommitResponse, OffsetFetchResponse, + BufferUnderflowError, ChecksumError, ConsumerFetchSizeTooSmall ) from kafka.util import ( read_short_string, read_int_string, relative_unpack, - write_short_string, write_int_string, group_by_topic_and_partition, - BufferUnderflowError, ChecksumError, ConsumerFetchSizeTooSmall + write_short_string, write_int_string, group_by_topic_and_partition ) log = logging.getLogger("kafka") |