Skip to content

Commit

Permalink
Code format
Browse files Browse the repository at this point in the history
  • Loading branch information
danniel committed Apr 2, 2024
1 parent 46231bb commit 18888e2
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion backend/seismic_site/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"


AUTH_USER_MODEL = 'users.User'
AUTH_USER_MODEL = "users.User"
DJANGO_ADMIN_EMAIL = env.str("DJANGO_ADMIN_EMAIL")
DJANGO_ADMIN_PASSWORD = env.str("DJANGO_ADMIN_PASSWORD")

Expand Down
1 change: 0 additions & 1 deletion backend/users/admin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
from django.contrib import admin

# Register your models here.
2 changes: 1 addition & 1 deletion backend/users/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

class User(AbstractUser):
class Meta:
db_table = 'auth_user' # TODO: This will be changed back after the data migration
db_table = "auth_user" # TODO: This will be changed back after the data migration
1 change: 0 additions & 1 deletion backend/users/tests.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
from django.test import TestCase

# Create your tests here.
1 change: 0 additions & 1 deletion backend/users/views.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
from django.shortcuts import render

# Create your views here.

0 comments on commit 18888e2

Please sign in to comment.