1
Fork 0
mirror of https://github.com/Steffo99/cfig.git synced 2024-11-21 15:34:20 +00:00

🗒️ Fix typing mistake

This commit is contained in:
Steffo 2022-04-26 18:09:00 +02:00
parent cd7661e536
commit c44368a557
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -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