diff --git a/unisportomat/quiz/migrations/0005_merge_20210602_1355.py b/unisportomat/quiz/migrations/0005_merge_20210602_1355.py
index b0704e364192e0c6b285cb451f02dbd70c241d5d..28f778845ca9915eebc0a0258a274a6c8621dea2 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 cb575de62c20f7d2e9d2a05e76994792766af588..87cc7f864146898a5321cc23d793ed6dd48a915b 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/