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:
parent
27ebc639f4
commit
65e5245626
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue