Skip to content

Commit

Permalink
Format missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
simonorono committed Nov 23, 2023
1 parent f928651 commit 55516e0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
22 changes: 11 additions & 11 deletions config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
"django.contrib.sessions",
"django.contrib.sites",
"django.contrib.admin",
'django.contrib.messages',
"django.contrib.messages",
"django.contrib.humanize",
"corsheaders",
"rest_framework",
Expand Down Expand Up @@ -126,16 +126,16 @@

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",
],
},
},
]
]
7 changes: 3 additions & 4 deletions pokemon_v2/migrations/0015_auto_20231121_1209.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@


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(),
),
]

0 comments on commit 55516e0

Please sign in to comment.