Skip to content

Commit

Permalink
🤖 Auto-formated Python code
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 25, 2024
1 parent a23e8b9 commit 203c888
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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),
),
]
2 changes: 1 addition & 1 deletion backend/backend/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": "/opt/db/db.sqlite3",
"NAME": "/opt/db/db.sqlite3",
}
}

Expand Down

0 comments on commit 203c888

Please sign in to comment.