cc-4105: placed docstrings inside of methods instead of above
This commit is contained in:
parent
1c084a3101
commit
ebd12448ee
|
@ -51,13 +51,13 @@ class AirtimeNotifier(Notifier):
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
def handle_message(self, body, message):
|
||||||
"""
|
"""
|
||||||
Messages received from RabbitMQ are handled here. These messages
|
Messages received from RabbitMQ are handled here. These messages
|
||||||
instruct media-monitor of events such as a new directory being watched,
|
instruct media-monitor of events such as a new directory being watched,
|
||||||
file metadata has been changed, or any other changes to the config of
|
file metadata has been changed, or any other changes to the config of
|
||||||
media-monitor via the web UI.
|
media-monitor via the web UI.
|
||||||
"""
|
"""
|
||||||
def handle_message(self, body, message):
|
|
||||||
# ACK the message to take it off the queue
|
# ACK the message to take it off the queue
|
||||||
message.ack()
|
message.ack()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue