summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2011-04-21 18:29:51 +0200
committerAsk Solem <ask@celeryproject.org>2011-04-21 18:29:51 +0200
commit1606cd96a00eb23cf4b1fd6c3b5cf7da0836abe3 (patch)
tree1bed9496b20b0cc8bd624c52d3177fe5c66fe5a0 /examples
parent976af54e9ec1d6f5715b38acd5440756e2944979 (diff)
downloadkombu-1606cd96a00eb23cf4b1fd6c3b5cf7da0836abe3.tar.gz
Use flake8 instead of pep8+pyflakes, and add it as a step in releaseok()v1.1.3
Diffstat (limited to 'examples')
-rw-r--r--examples/simple_eventlet_receive.py1
-rw-r--r--examples/simple_eventlet_send.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/examples/simple_eventlet_receive.py b/examples/simple_eventlet_receive.py
index 2cf12f2e..0b10d7a6 100644
--- a/examples/simple_eventlet_receive.py
+++ b/examples/simple_eventlet_receive.py
@@ -27,7 +27,6 @@ def wait_many(timeout=1):
password="guest",
virtual_host="/")
-
#: SimpleQueue mimics the interface of the Python Queue module.
#: First argument can either be a queue name or a kombu.Queue object.
#: If a name, then the queue will be declared with the name as the queue
diff --git a/examples/simple_eventlet_send.py b/examples/simple_eventlet_send.py
index 43b60001..325a99cc 100644
--- a/examples/simple_eventlet_send.py
+++ b/examples/simple_eventlet_send.py
@@ -12,6 +12,7 @@ from kombu import BrokerConnection
eventlet.monkey_patch()
+
def send_many(n):
#: Create connection
@@ -23,7 +24,6 @@ def send_many(n):
password="guest",
virtual_host="/")
-
#: SimpleQueue mimics the interface of the Python Queue module.
#: First argument can either be a queue name or a kombu.Queue object.
#: If a name, then the queue will be declared with the name as the queue