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

View file

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