diff options
author | Mahendra M <mahendra.m@gmail.com> | 2013-05-29 14:20:58 +0530 |
---|---|---|
committer | David Arthur <mumrah@gmail.com> | 2013-05-29 16:38:39 -0400 |
commit | 2c257eeb1f02748840a8f4535d8d2a88ef5235f2 (patch) | |
tree | 73ff852a845bdb947f0820ea1ff64c7b72436c9b /kafka/__init__.py | |
parent | 97962d4af3c0e57a549f432a7604f8ba0c5914fd (diff) | |
download | kafka-python-2c257eeb1f02748840a8f4535d8d2a88ef5235f2.tar.gz |
PEP8-ify most of the files
consumer.py and conn.py will be done later after pending merges
Diffstat (limited to 'kafka/__init__.py')
-rw-r--r-- | kafka/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/__init__.py b/kafka/__init__.py index 5198d2f..d229169 100644 --- a/kafka/__init__.py +++ b/kafka/__init__.py @@ -4,7 +4,7 @@ __author__ = 'David Arthur' __license__ = 'Apache License 2.0' __copyright__ = 'Copyright 2012, David Arthur under Apache License, v2.0' -from kafka.client import KafkaClient +from kafka.client import KafkaClient from kafka.conn import KafkaConnection from kafka.protocol import ( create_message, create_gzip_message, create_snappy_message |