From b613818584da5d3b6c9da2b1eb9853a13889be1f Mon Sep 17 00:00:00 2001 From: Laurent Date: Mon, 15 Jan 2024 11:44:25 +0100 Subject: [PATCH] Fix missing import --- pokeranalytics_backend/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pokeranalytics_backend/settings.py b/pokeranalytics_backend/settings.py index f625338..5f8d2e2 100644 --- a/pokeranalytics_backend/settings.py +++ b/pokeranalytics_backend/settings.py @@ -11,6 +11,7 @@ https://docs.djangoproject.com/en/4.1/ref/settings/ """ from pathlib import Path +import os # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent