From 074f59d86ca0757e617e52ffeb5fe91bd5955e1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kr=C3=BCger?= Date: Tue, 20 Feb 2024 15:05:18 +0100 Subject: [PATCH] Adding a docstring as required by the automated test. --- nikola/plugins/template/jinja.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nikola/plugins/template/jinja.py b/nikola/plugins/template/jinja.py index a08ae44b4..ad2158a8f 100644 --- a/nikola/plugins/template/jinja.py +++ b/nikola/plugins/template/jinja.py @@ -60,6 +60,7 @@ def __init__(self): return def user_configuration(self, user_config: Mapping[str, str]) -> None: + """Accept user configuration from the theme configuration file.""" supported_config_keys = set(["extensions",]) for key in user_config.keys(): if key not in supported_config_keys: