django1/django/conf
Mariusz Felisiak ca88caa103 Refs #33476 -- Used vertical hanging indentation for format lists with inline comments.
Lists with multiple values and comments per-line are reformatted
by Black to multiple lines with a single comment. For example:

DATE_INPUT_FORMATS =
    "%Y-%m-%d", "%m/%d/%Y", "%m/%d/%y",  # '2006-10-25', '10/25/2006', '10/25/06'
]

is reformatted to the:

DATE_INPUT_FORMATS =
    "%Y-%m-%d",
    "%m/%d/%Y",
    "%m/%d/%y",  # '2006-10-25', '10/25/2006', '10/25/06'
]

This reformats affected entries to multiple lines with corresponding
comments.
2022-02-01 15:11:35 +01:00
..
app_template Fixed #31007 -- Allowed specifying type of auto-created primary keys. 2020-12-15 11:25:46 +01:00
locale Refs #33476 -- Used vertical hanging indentation for format lists with inline comments. 2022-02-01 15:11:35 +01:00
project_template Fixed #32873 -- Deprecated settings.USE_L10N. 2021-09-14 12:05:43 +02:00
urls Refs #31534 -- Removed django.conf.urls.url() per deprecation timeline. 2021-01-14 17:50:04 +01:00
__init__.py Fixed #30360 -- Added support for secret key rotation. 2022-02-01 11:12:24 +01:00
global_settings.py Refs #33476 -- Used vertical hanging indentation for format lists with inline comments. 2022-02-01 15:11:35 +01:00