Skip to content

Commit

Permalink
Merge pull request #1252 from Liamdoult/minor-documentation-change
Browse files Browse the repository at this point in the history
Correct Type
  • Loading branch information
lukebakken committed Nov 21, 2019
2 parents cf954e1 + 44c0e67 commit 3df9d33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pika/channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def add_on_return_callback(self, callback):
:param callable callback: The function to call, having the signature
callback(channel, method, properties, body)
where
- channel: pika.Channel
- channel: pika.channel.Channel
- method: pika.spec.Basic.Return
- properties: pika.spec.BasicProperties
- body: bytes
Expand Down Expand Up @@ -282,7 +282,7 @@ def basic_consume(self,
:param callable on_message_callback: The function to call when
consuming with the signature
on_message_callback(channel, method, properties, body), where
- channel: pika.Channel
- channel: pika.channel.Channel
- method: pika.spec.Basic.Deliver
- properties: pika.spec.BasicProperties
- body: bytes
Expand Down Expand Up @@ -357,7 +357,7 @@ def basic_get(self, queue, callback, auto_ack=False):
channel
:param callable callback: The callback to call with a message that has
the signature callback(channel, method, properties, body), where:
- channel: pika.Channel
- channel: pika.channel.Channel
- method: pika.spec.Basic.GetOk
- properties: pika.spec.BasicProperties
- body: bytes
Expand Down

0 comments on commit 3df9d33

Please sign in to comment.