From 203c888d3fc0d4482b0e4a13dad2ec5eb4f8761f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 23:16:19 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Auto-formated=20Python=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/0002_organization_notification_limit.py | 6 +++--- backend/backend/settings.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/authentication/organizations/migrations/0002_organization_notification_limit.py b/backend/authentication/organizations/migrations/0002_organization_notification_limit.py index f0f5e16..7b18b5a 100644 --- a/backend/authentication/organizations/migrations/0002_organization_notification_limit.py +++ b/backend/authentication/organizations/migrations/0002_organization_notification_limit.py @@ -6,13 +6,13 @@ class Migration(migrations.Migration): dependencies = [ - ('organizations', '0001_initial'), + ("organizations", "0001_initial"), ] operations = [ migrations.AddField( - model_name='organization', - name='notification_limit', + model_name="organization", + name="notification_limit", field=models.PositiveIntegerField(default=5), ), ] diff --git a/backend/backend/settings.py b/backend/backend/settings.py index abb4788..6e68abd 100644 --- a/backend/backend/settings.py +++ b/backend/backend/settings.py @@ -204,7 +204,7 @@ DATABASES = { "default": { "ENGINE": "django.db.backends.sqlite3", - "NAME": "/opt/db/db.sqlite3", + "NAME": "/opt/db/db.sqlite3", } }