Sort imports
This commit is contained in:
@ -4,9 +4,7 @@ import logging
|
||||
|
||||
from django.views.generic import ListView
|
||||
|
||||
from twitch_app.models import (
|
||||
Game,
|
||||
)
|
||||
from twitch_app.models import Game
|
||||
|
||||
logger: logging.Logger = logging.getLogger(__name__)
|
||||
|
||||
|
@ -5,28 +5,16 @@ from typing import TYPE_CHECKING
|
||||
|
||||
import hishel
|
||||
from django.conf import settings
|
||||
from django.http import HttpRequest, HttpResponse
|
||||
from django.template.response import TemplateResponse
|
||||
|
||||
from core.data import WebhookData
|
||||
from twitch_app.models import (
|
||||
Organization,
|
||||
)
|
||||
from twitch_app.models import Organization
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from pathlib import Path
|
||||
|
||||
from django.db.models.manager import BaseManager
|
||||
from django.http import (
|
||||
HttpRequest,
|
||||
HttpResponse,
|
||||
)
|
||||
from httpx import Response
|
||||
if TYPE_CHECKING:
|
||||
from django.http import (
|
||||
HttpRequest,
|
||||
HttpResponse,
|
||||
)
|
||||
from django.http import HttpRequest, HttpResponse
|
||||
from httpx import Response
|
||||
|
||||
logger: logging.Logger = logging.getLogger(__name__)
|
||||
|
@ -11,9 +11,7 @@ from django.views.generic import FormView
|
||||
|
||||
from core.data import WebhookData
|
||||
from core.forms import DiscordSettingForm
|
||||
from twitch_app.models import (
|
||||
Game,
|
||||
)
|
||||
from twitch_app.models import Game
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from pathlib import Path
|
||||
|
Reference in New Issue
Block a user