reorganize imports with ruff

This commit is contained in:
thomas girod
2024-06-24 13:07:36 +02:00
parent 9bdf3fc4ac
commit 3143d3d91a
170 changed files with 702 additions and 804 deletions

View File

@ -24,20 +24,19 @@
from __future__ import annotations
import math
import logging
import math
import time
from typing import List, TypedDict, NamedTuple, Union, Optional
from typing import List, NamedTuple, Optional, TypedDict, Union
from django.db import models
from django.db.models import Q, Case, F, Value, When, Count
from django.db.models import Case, Count, F, Q, Value, When
from django.db.models.functions import Concat
from django.utils import timezone
from django.utils.translation import gettext_lazy as _
from core.models import User
from club.models import Club
from core.models import User
from sas.models import Picture