diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2018-10-22 01:24:50 -0700 |
---|---|---|
committer | Jeff Widman <jeff@jeffwidman.com> | 2018-10-22 14:30:33 -0700 |
commit | b83feeca2ec6f6ad745fb7ea47c6484304bb55d8 (patch) | |
tree | 7580e387521b388f3af629b9d25278faa26ee349 /test/test_protocol_legacy.py | |
parent | a6be21e7b3a20ce2e25ef26140c43b59cc356f38 (diff) | |
download | kafka-python-b83feeca2ec6f6ad745fb7ea47c6484304bb55d8.tar.gz |
Vendor `six` consistently
Use vendored `six`, and also `six.moves.range` rather than `xrange`
Diffstat (limited to 'test/test_protocol_legacy.py')
-rw-r--r-- | test/test_protocol_legacy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_protocol_legacy.py b/test/test_protocol_legacy.py index d705e3a..1341af0 100644 --- a/test/test_protocol_legacy.py +++ b/test/test_protocol_legacy.py @@ -2,7 +2,7 @@ from contextlib import contextmanager import struct -import six +from kafka.vendor import six from mock import patch, sentinel from . import unittest |