Capitalization of returns first char

This commit is contained in:
Sergi Delgado Segura
2019-12-10 10:44:52 +01:00
parent 05dad7d38b
commit 6e196b25bd

View File

@@ -143,7 +143,7 @@ def get_all_appointments():
This endpoint should only be accessible by the administrator. Requests are only allowed from localhost. This endpoint should only be accessible by the administrator. Requests are only allowed from localhost.
Returns: Returns:
dict: a json formatted dictionary containing all the appointments hold by the :mod:`Watcher <pisa.watcher>` dict: A json formatted dictionary containing all the appointments hold by the :mod:`Watcher <pisa.watcher>`
(``watcher_appointments``) and by the :mod:`Responder <pisa.responder>` (``responder_jobs``). (``watcher_appointments``) and by the :mod:`Responder <pisa.responder>` (``responder_jobs``).
""" """
@@ -172,7 +172,7 @@ def get_block_count():
testers about the current block so they can define a dummy appointment without having to run a bitcoin node. testers about the current block so they can define a dummy appointment without having to run a bitcoin node.
Returns: Returns:
dict: a json encoded dictionary containing the block height. dict: A json encoded dictionary containing the block height.
""" """
@@ -184,7 +184,7 @@ def start_api(w):
This function starts the Flask server used to run the API. This function starts the Flask server used to run the API.
Args: Args:
w (Watcher): a :mod:`Watcher <pisa.watcher>` object. w (Watcher): A :mod:`Watcher <pisa.watcher>` object.
""" """