Fix ends of files

This commit is contained in:
dalrrard 2021-10-13 06:05:53 -05:00
parent fd25955dfd
commit 1faa3fbdc7
No known key found for this signature in database
GPG Key ID: D315D829E1C20E7F
12 changed files with 0 additions and 12 deletions

View File

@ -2,4 +2,3 @@
from django.contrib import admin
# Register your models here.

View File

@ -3,4 +3,3 @@ from django.apps import AppConfig
class {{ '{{' }} camel_case_app_name {{ '}}' }}Config(AppConfig):
name = '{{ "{{" }} app_name {{ "}}" }}'

View File

@ -2,4 +2,3 @@
from django.utils.translation import gettext_lazy as _
# Create your forms here.

View File

@ -2,4 +2,3 @@
from django.db import models
# Create your models here.

View File

@ -1,3 +1,2 @@
"""Define {{ '{{' }} app_name {{ '}}' }} app Celery tasks."""
from config import celery_app

View File

@ -3,4 +3,3 @@ from typing import Any, Sequence
from factory import Faker, post_generation
from factory.django import DjangoModelFactory

View File

@ -2,4 +2,3 @@ import pytest
from django.urls import reverse
pytestmark = pytest.mark.django_db

View File

@ -5,4 +5,3 @@ import pytest
from django.utils.translation import gettext_lazy as _
pytestmark = pytest.mark.django_db

View File

@ -1,4 +1,3 @@
import pytest
pytestmark = pytest.mark.django_db

View File

@ -2,4 +2,3 @@ import pytest
from django.urls import resolve, reverse
pytestmark = pytest.mark.django_db

View File

@ -9,4 +9,3 @@ from django.test import RequestFactory
from django.urls import reverse
pytestmark = pytest.mark.django_db

View File

@ -2,4 +2,3 @@
from django.shortcuts import render
# Create your views here.