Fix isort

This commit is contained in:
Bruno Alla 2020-03-17 15:35:42 +00:00
parent d2988040d5
commit 5498716c74
3 changed files with 3 additions and 4 deletions

View File

@ -1,11 +1,10 @@
"""
Base settings to build other settings files upon.
"""
from pathlib import Path
import environ
from pathlib import Path
ROOT_DIR = Path(__file__).parents[2]
# {{ cookiecutter.project_slug }}/)
APPS_DIR = ROOT_DIR / "{{ cookiecutter.project_slug }}"

View File

@ -15,9 +15,9 @@ framework.
"""
import os
import sys
from pathlib import Path
from django.core.wsgi import get_wsgi_application
from pathlib import Path
# This allows easy placement of apps within the interior
# {{ cookiecutter.project_slug }} directory.

View File

@ -1,6 +1,6 @@
import os
from typing import Sequence
from pathlib import Path
from typing import Sequence
import pytest