summaryrefslogtreecommitdiff
path: root/kafka/structs.py
diff options
context:
space:
mode:
authorJeff Widman <jeff@jeffwidman.com>2018-05-28 15:58:26 -0700
committerJeff Widman <jeff@jeffwidman.com>2018-05-28 16:30:07 -0700
commitc666b4e251757b827d52d62f9d4a18ab5e728897 (patch)
treeb74c5190a0fd74afffb5318d4bd34b59ae33e25c /kafka/structs.py
parent81cda595b3ecf17737b4e4d86efa230db2e9bd31 (diff)
downloadkafka-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/structs.py')
-rw-r--r--kafka/structs.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/kafka/structs.py b/kafka/structs.py
index 62f36dd..e15e92e 100644
--- a/kafka/structs.py
+++ b/kafka/structs.py
@@ -93,7 +93,3 @@ KafkaMessage = namedtuple("KafkaMessage",
# Limit value: int >= 0, 0 means no retries
RetryOptions = namedtuple("RetryOptions",
["limit", "backoff_ms", "retry_on_timeouts"])
-
-
-# Support legacy imports from kafka.common
-from kafka.errors import *