mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-05 04:30:16 +03:00
Fix import style
This commit is contained in:
parent
283be39169
commit
77ed2347cc
|
@ -1,13 +1,13 @@
|
|||
# ruff: noqa: ERA001, E501, E402
|
||||
"""Base settings to build other settings files upon."""
|
||||
|
||||
{% if cookiecutter.use_celery == 'y' -%}
|
||||
import ssl
|
||||
{%- endif %}
|
||||
from pathlib import Path
|
||||
|
||||
import environ
|
||||
|
||||
{% if cookiecutter.use_celery == 'y' %}
|
||||
import ssl # noqa: E402
|
||||
{% endif %}
|
||||
|
||||
BASE_DIR = Path(__file__).resolve(strict=True).parent.parent.parent
|
||||
# {{ cookiecutter.project_slug }}/
|
||||
|
|
Loading…
Reference in New Issue
Block a user