diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2018-05-28 15:58:26 -0700 |
---|---|---|
committer | Jeff Widman <jeff@jeffwidman.com> | 2018-06-05 14:32:01 -0700 |
commit | bc4cc434cddf403a35d0393d68ecfdbfad17c8e5 (patch) | |
tree | b74c5190a0fd74afffb5318d4bd34b59ae33e25c /kafka/structs.py | |
parent | 81cda595b3ecf17737b4e4d86efa230db2e9bd31 (diff) | |
download | kafka-python-bc4cc434cddf403a35d0393d68ecfdbfad17c8e5.tar.gz |
Don't use `kafka.common` internally1.3.5
This finishes the split from `kafka.common` to `kafka.errors`/`kafka.structs`.
Diffstat (limited to 'kafka/structs.py')
-rw-r--r-- | kafka/structs.py | 4 |
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 * |