Sort imports

This commit is contained in:
2024-07-14 20:17:20 +02:00
parent 5dacb12321
commit 750d20c394
3 changed files with 4 additions and 20 deletions

View File

@ -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__)

View File

@ -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__)

View File

@ -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