diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2017-10-04 14:29:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-04 14:29:45 -0700 |
commit | cec1bdc9965b3d6729d4415e31b4dac04d603873 (patch) | |
tree | 93a88088641049ffcedc1cd2ba7d25763b28d30b | |
parent | fc9da053c8656c2d846889b1c08d54cecd3907d0 (diff) | |
download | kafka-python-cec1bdc9965b3d6729d4415e31b4dac04d603873.tar.gz |
Fix grammar
-rw-r--r-- | kafka/consumer/fetcher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/consumer/fetcher.py b/kafka/consumer/fetcher.py index 10ed187..b86c8ec 100644 --- a/kafka/consumer/fetcher.py +++ b/kafka/consumer/fetcher.py @@ -821,7 +821,7 @@ class Fetcher(six.Iterator): # `fetch_max_bytes` option we need this shuffle # NOTE: we do have partition_data in random order due to usage # of unordered structures like dicts, but that does not - # guaranty equal distribution, and starting Python3.6 + # guarantee equal distribution, and starting in Python3.6 # dicts retain insert order. partition_data = list(partition_data.items()) random.shuffle(partition_data) |