From e4df366ff16573b5a9a5e1d93c85390159f5ca8a Mon Sep 17 00:00:00 2001 From: Andy Mikhaylenko Date: Sat, 30 Dec 2023 04:43:16 +0100 Subject: [PATCH] docs: fix formatting --- docs/source/tutorial.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/tutorial.rst b/docs/source/tutorial.rst index 7855c86..eeb53a8 100644 --- a/docs/source/tutorial.rst +++ b/docs/source/tutorial.rst @@ -23,14 +23,14 @@ Assume we need a CLI application which output is modulated by arguments: $ ./greet.py John Hello John! -Let's start with a simple function:: +Let's start with a simple function: .. code-block:: python def main(name: str = "unknown user") -> str: return f"Hello {name}!" -Now make it a CLI command:: +Now make it a CLI command: .. code-block:: python