diff options
author | Omar Ghishan <omar.ghishan@rd.io> | 2014-01-03 10:57:29 -0800 |
---|---|---|
committer | Omar Ghishan <omar.ghishan@rd.io> | 2014-01-06 15:14:50 -0800 |
commit | 99b561d95f558652583f79aa4ac5dfa4c5e1b854 (patch) | |
tree | 32b8d56a874a80ec03f550b4caf90d2895b9c0dc /test/test_unit.py | |
parent | b6b1ba09402dbe7fe13b9c1e806faa02db42ebdb (diff) | |
download | kafka-python-99b561d95f558652583f79aa4ac5dfa4c5e1b854.tar.gz |
Style fix for imports
Diffstat (limited to 'test/test_unit.py')
-rw-r--r-- | test/test_unit.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/test/test_unit.py b/test/test_unit.py index 93d88a1..08fef9c 100644 --- a/test/test_unit.py +++ b/test/test_unit.py @@ -9,15 +9,11 @@ from kafka.common import ( OffsetAndMessage, BrokerMetadata, PartitionMetadata ) from kafka.codec import ( - has_gzip, has_snappy, - gzip_encode, gzip_decode, + has_gzip, has_snappy, gzip_encode, gzip_decode, snappy_encode, snappy_decode ) from kafka.protocol import ( - create_gzip_message, - create_message, - create_snappy_message, - KafkaProtocol + create_gzip_message, create_message, create_snappy_message, KafkaProtocol ) ITERATIONS = 1000 |