From 2e06f477aefa5549138ccaba60875a89f09101f2 Mon Sep 17 00:00:00 2001 From: Noah Jonah Gente <fu2662cw@mi.fu-berlin.de> Date: Wed, 2 Jun 2021 16:00:33 +0200 Subject: [PATCH] fix formatting --- unisportomat/quiz/migrations/0005_merge_20210602_1355.py | 7 +++---- unisportomat/unisportomat/settings.py | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/unisportomat/quiz/migrations/0005_merge_20210602_1355.py b/unisportomat/quiz/migrations/0005_merge_20210602_1355.py index b0704e3..28f7788 100644 --- a/unisportomat/quiz/migrations/0005_merge_20210602_1355.py +++ b/unisportomat/quiz/migrations/0005_merge_20210602_1355.py @@ -6,9 +6,8 @@ from django.db import migrations class Migration(migrations.Migration): dependencies = [ - ('quiz', '0003_alter_calltomove_text'), - ('quiz', '0004_auto_20210526_2014'), + ("quiz", "0003_alter_calltomove_text"), + ("quiz", "0004_auto_20210526_2014"), ] - operations = [ - ] + operations = [] diff --git a/unisportomat/unisportomat/settings.py b/unisportomat/unisportomat/settings.py index cb575de..87cc7f8 100644 --- a/unisportomat/unisportomat/settings.py +++ b/unisportomat/unisportomat/settings.py @@ -16,7 +16,7 @@ from pathlib import Path BASE_DIR = Path(__file__).resolve().parent.parent # Where user uploaded files like images are stored -MEDIA_ROOT = os.path.join(BASE_DIR, 'media') +MEDIA_ROOT = os.path.join(BASE_DIR, "media") # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ -- GitLab