Corrected simple typo in 'THIRD_PARTY_APPS' it was 'THIRED_PARTY_APPS'

This commit is contained in:
Kaleb 2023-12-07 17:24:32 -05:00
parent 7a4102a66d
commit 087c77e319
No known key found for this signature in database

View File

@ -45,8 +45,8 @@ DJANGO_APPS = [
"django.contrib.staticfiles",
]
# Thired party apps
THIRED_PARTY_APPS = [
# Third party apps
THIRD_PARTY_APPS = [
"crispy_forms",
"rest_framework",
]
@ -63,7 +63,7 @@ PROJECT_APPS = [
]
# Combine all apps
INSTALLED_APPS = DJANGO_APPS + THIRED_PARTY_APPS + PROJECT_APPS
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + PROJECT_APPS
MIDDLEWARE = [
"django.middleware.security.SecurityMiddleware",