From 65e52456260bed26483b3b66b5059dcf1c8c65e2 Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Tue, 26 May 2020 15:46:05 +0000 Subject: [PATCH] Fix mypy warning when overriding DEV_TEMPLATE_CONTEXT_PROCESSORS by turning it into a list (can't override a tuple without the type changing) - Legacy-Id: 17886 --- ietf/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ietf/settings.py b/ietf/settings.py index f41e0b18b..ad3859cc5 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -926,11 +926,11 @@ DEV_MIDDLEWARE = () # page loading. If you wish to use the sql_queries debug listing, put this in # your settings_local and make sure your client IP address is in INTERNAL_IPS: # -# DEV_TEMPLATE_CONTEXT_PROCESSORS = ( +# DEV_TEMPLATE_CONTEXT_PROCESSORS = [ # 'ietf.context_processors.sql_debug', -# ) +# ] # -DEV_TEMPLATE_CONTEXT_PROCESSORS = () +DEV_TEMPLATE_CONTEXT_PROCESSORS = [] # type: List[str] # Domain which hosts draft and wg alias lists DRAFT_ALIAS_DOMAIN = IETF_DOMAIN