From 530491ff1028e6198a2b11ac8cdcd6cd802fe1cb Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Mon, 7 Nov 2022 18:53:45 +0100 Subject: [PATCH] Fix typing --- app/templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates.py b/app/templates.py index 283ee44..c5351bb 100644 --- a/app/templates.py +++ b/app/templates.py @@ -38,7 +38,7 @@ from app.utils.highlight import HIGHLIGHT_CSS from app.utils.highlight import highlight _templates = Jinja2Templates( - directory=["data/templates", "app/templates"], + directory=["data/templates", "app/templates"], # type: ignore # bad typing trim_blocks=True, lstrip_blocks=True, )