8000 Remove superfluous whitespace. · syk-coder/rabbitmq-tutorials@c4c9553 · GitHub
[go: up one dir, main page]

Skip to content

Commit c4c9553

Browse files
majekJakub Stastny aka botanicus
authored and
Jakub Stastny aka botanicus
committed
Remove superfluous whitespace.
1 parent 64d7515 commit c4c9553

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

python/rpc_client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,8 @@ def call(self, n):
3232
self.channel.start_consuming()
3333
return int(self.response)
3434

35-
3635
fibonacci_rpc = FibonacciRpcClient()
3736

3837
print " [x] Requesting fib(30)"
3938
response = fibonacci_rpc.call(30)
4039
print " [.] Got %r" % (response,)
41-

python/rpc_server.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
#!/usr/bin/env python
22
import pika
33

4-
54
connection = pika.BlockingConnection(pika.ConnectionParameters(
65
host='localhost'))
76

87
channel = connection.channel()
98

10-
119
channel.queue_declare(queue='rpc_queue')
1210

13-
1411
def fib(n):
1512
if n == 0:
1613
return 0

0 commit comments

Comments
 (0)
0