From c44368a5571c6a54ce08758b7fd41897d75cdea3 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 26 Apr 2022 18:09:00 +0200 Subject: [PATCH] :spiral_notepad: Fix typing mistake --- docs/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 26bc70b..5872dc3 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -226,7 +226,7 @@ In the modules of your application, you can import and use the variables directl :emphasize-lines: 6,7 @config.optional() - def ALWAYS_NONE(val: t.Optional[str]) -> str: + def ALWAYS_NONE(val: t.Optional[str]) -> None: """This configuration value will always be None.""" return None