From c666b4e251757b827d52d62f9d4a18ab5e728897 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Mon, 28 May 2018 15:58:26 -0700 Subject: Don't use `kafka.common` internally This finishes the split from `kafka.common` to `kafka.errors`/`kafka.structs`. --- kafka/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kafka/__init__.py') diff --git a/kafka/__init__.py b/kafka/__init__.py index f108eff..ff364d3 100644 --- a/kafka/__init__.py +++ b/kafka/__init__.py @@ -25,8 +25,8 @@ from kafka.conn import BrokerConnection from kafka.protocol import ( create_message, create_gzip_message, create_snappy_message) from kafka.partitioner import RoundRobinPartitioner, HashedPartitioner, Murmur2Partitioner -from kafka.structs import TopicPartition, OffsetAndMetadata from kafka.serializer import Serializer, Deserializer +from kafka.structs import TopicPartition, OffsetAndMetadata # To be deprecated when KafkaProducer interface is released from kafka.client import SimpleClient -- cgit v1.2.1