From 087c77e319f5f54275aadd3f414f9cec300becd2 Mon Sep 17 00:00:00 2001 From: Kaleb Date: Thu, 7 Dec 2023 17:24:32 -0500 Subject: [PATCH] Corrected simple typo in 'THIRD_PARTY_APPS' it was 'THIRED_PARTY_APPS' --- SMS/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SMS/settings.py b/SMS/settings.py index 4b2444b..1ddddd2 100644 --- a/SMS/settings.py +++ b/SMS/settings.py @@ -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",