diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2018-05-28 15:58:26 -0700 |
---|---|---|
committer | Jeff Widman <jeff@jeffwidman.com> | 2018-05-28 16:30:07 -0700 |
commit | c666b4e251757b827d52d62f9d4a18ab5e728897 (patch) | |
tree | b74c5190a0fd74afffb5318d4bd34b59ae33e25c /kafka/__init__.py | |
parent | 81cda595b3ecf17737b4e4d86efa230db2e9bd31 (diff) | |
download | kafka-python-dont-use-kafka.common-internally.tar.gz |
Don't use `kafka.common` internallydont-use-kafka.common-internally
This finishes the split from `kafka.common` to `kafka.errors`/`kafka.structs`.
Diffstat (limited to 'kafka/__init__.py')
-rw-r--r-- | kafka/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |