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
This commit is contained in:
Ole Laursen 2020-05-26 15:46:05 +00:00
parent 27ebc639f4
commit 65e5245626

View file

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