From 6e196b25bde02db6bc619fd7361a052b92c680b6 Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Tue, 10 Dec 2019 10:44:52 +0100 Subject: [PATCH] Capitalization of returns first char --- pisa/api.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pisa/api.py b/pisa/api.py index b5445e0..89cdef9 100644 --- a/pisa/api.py +++ b/pisa/api.py @@ -143,7 +143,7 @@ def get_all_appointments(): This endpoint should only be accessible by the administrator. Requests are only allowed from localhost. Returns: - dict: a json formatted dictionary containing all the appointments hold by the :mod:`Watcher ` + dict: A json formatted dictionary containing all the appointments hold by the :mod:`Watcher ` (``watcher_appointments``) and by the :mod:`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. 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. Args: - w (Watcher): a :mod:`Watcher ` object. + w (Watcher): A :mod:`Watcher ` object. """