Browse Source

Fix import order

Jake Howard 1 year ago
parent
commit
8cb4c0a60e
1 changed files with 2 additions and 1 deletions
  1. 2 1
      bakerydemo/settings/base.py

+ 2 - 1
bakerydemo/settings/base.py

@@ -10,9 +10,10 @@ For the full list of settings and their values, see
 https://docs.djangoproject.com/en/3.2/ref/settings/
 """
 
-import dj_database_url
 import os
 
+import dj_database_url
+
 # Build paths inside the project like this: os.path.join(PROJECT_DIR, ...)
 PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
 BASE_DIR = os.path.dirname(PROJECT_DIR)