Skip to content

Commit

Permalink
Code check fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shoxxd221 committed Feb 11, 2024
1 parent 5e99030 commit 27e4b44
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/backend/config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"


EMAIL_HOST = getenv("EMAIL_HOST", default='localhost')
EMAIL_HOST = getenv("EMAIL_HOST", default="localhost")
EMAIL_HOST_USER = getenv("EMAIL_HOST_USER", default="")
EMAIL_HOST_PASSWORD = getenv("EMAIL_HOST_PASSWORD", default="")
EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend"
4 changes: 2 additions & 2 deletions src/backend/config/settings/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
}


EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
EMAIL_HOST = 'localhost'
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
EMAIL_HOST = "localhost"
EMAIL_PORT = 25

0 comments on commit 27e4b44

Please sign in to comment.