mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-16 01:44:51 +03:00
Fix ends of files
This commit is contained in:
parent
fd25955dfd
commit
1faa3fbdc7
|
@ -2,4 +2,3 @@
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
|
||||||
# Register your models here.
|
# Register your models here.
|
||||||
|
|
||||||
|
|
|
@ -3,4 +3,3 @@ from django.apps import AppConfig
|
||||||
|
|
||||||
class {{ '{{' }} camel_case_app_name {{ '}}' }}Config(AppConfig):
|
class {{ '{{' }} camel_case_app_name {{ '}}' }}Config(AppConfig):
|
||||||
name = '{{ "{{" }} app_name {{ "}}" }}'
|
name = '{{ "{{" }} app_name {{ "}}" }}'
|
||||||
|
|
||||||
|
|
|
@ -2,4 +2,3 @@
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
|
||||||
# Create your forms here.
|
# Create your forms here.
|
||||||
|
|
||||||
|
|
|
@ -2,4 +2,3 @@
|
||||||
from django.db import models
|
from django.db import models
|
||||||
|
|
||||||
# Create your models here.
|
# Create your models here.
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
"""Define {{ '{{' }} app_name {{ '}}' }} app Celery tasks."""
|
"""Define {{ '{{' }} app_name {{ '}}' }} app Celery tasks."""
|
||||||
from config import celery_app
|
from config import celery_app
|
||||||
|
|
||||||
|
|
|
@ -3,4 +3,3 @@ from typing import Any, Sequence
|
||||||
|
|
||||||
from factory import Faker, post_generation
|
from factory import Faker, post_generation
|
||||||
from factory.django import DjangoModelFactory
|
from factory.django import DjangoModelFactory
|
||||||
|
|
||||||
|
|
|
@ -2,4 +2,3 @@ import pytest
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
|
|
||||||
pytestmark = pytest.mark.django_db
|
pytestmark = pytest.mark.django_db
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,3 @@ import pytest
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
|
||||||
pytestmark = pytest.mark.django_db
|
pytestmark = pytest.mark.django_db
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
pytestmark = pytest.mark.django_db
|
pytestmark = pytest.mark.django_db
|
||||||
|
|
||||||
|
|
|
@ -2,4 +2,3 @@ import pytest
|
||||||
from django.urls import resolve, reverse
|
from django.urls import resolve, reverse
|
||||||
|
|
||||||
pytestmark = pytest.mark.django_db
|
pytestmark = pytest.mark.django_db
|
||||||
|
|
||||||
|
|
|
@ -9,4 +9,3 @@ from django.test import RequestFactory
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
|
|
||||||
pytestmark = pytest.mark.django_db
|
pytestmark = pytest.mark.django_db
|
||||||
|
|
||||||
|
|
|
@ -2,4 +2,3 @@
|
||||||
from django.shortcuts import render
|
from django.shortcuts import render
|
||||||
|
|
||||||
# Create your views here.
|
# Create your views here.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user