Skip to content
This repository was archived by the owner on Mar 27, 2023. It is now read-only.

Commit 4d86261

Browse files
committed
fixed flake8 and black issues
1 parent fe08e92 commit 4d86261

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

backend/apps/accounts/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from django.urls import include, path, re_path
1+
from django.urls import include, path
22

33
from . import views
44

backend/apps/core/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://developers.google.com/identity/protocols/OpenIDConnect
33

44
OAUTH = {
5-
"github": {"name": "github", "url": "https://github.com/login/oauth/access_token",},
5+
"github": {"name": "github", "url": "https://github.com/login/oauth/access_token"},
66
"google-oauth2": {
77
"name": "google-oauth2",
88
"url": "https://oauth2.googleapis.com/token",

backend/apps/core/tasks.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import time
22

33
import celery
4-
from celery.decorators import periodic_task
54
from django.core.mail import send_mail
65

76
from backend.celery_app import app

0 commit comments

Comments
 (0)