Format missing files

This commit is contained in:
Simón Oroño 2023-11-23 07:05:30 -04:00 committed by Simón Oroño
parent d1e2d9c5b4
commit db33cfc1a4
2 changed files with 14 additions and 15 deletions

View file

@ -97,7 +97,7 @@ INSTALLED_APPS = (
"django.contrib.sessions",
"django.contrib.sites",
"django.contrib.admin",
'django.contrib.messages',
"django.contrib.messages",
"django.contrib.humanize",
"corsheaders",
"rest_framework",
@ -126,16 +126,16 @@ REST_FRAMEWORK = {
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [],
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
"django.template.context_processors.debug",
"django.template.context_processors.request",
"django.contrib.auth.context_processors.auth",
"django.contrib.messages.context_processors.messages",
],
},
},
]
]

View file

@ -4,15 +4,14 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pokemon_v2', '0014_auto_20231119_0303'),
("pokemon_v2", "0014_auto_20231119_0303"),
]
operations = [
migrations.AlterField(
model_name='pokemonsprites',
name='sprites',
model_name="pokemonsprites",
name="sprites",
field=models.JSONField(),
),
]