mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 03:19:56 +02:00
See #297: sorted imports
This commit is contained in:
parent
9427f8b56e
commit
9bea804f14
132 changed files with 223 additions and 368 deletions
|
@ -1,13 +1,14 @@
|
|||
import random
|
||||
from rest_framework import serializers
|
||||
from django.db.models import Count
|
||||
from django.core.exceptions import ValidationError
|
||||
from taggit.models import Tag
|
||||
from funkwhale_api.users.models import User
|
||||
from funkwhale_api.music.models import Track, Artist
|
||||
|
||||
from . import filters
|
||||
from . import models
|
||||
from django.core.exceptions import ValidationError
|
||||
from django.db.models import Count
|
||||
from rest_framework import serializers
|
||||
from taggit.models import Tag
|
||||
|
||||
from funkwhale_api.music.models import Artist, Track
|
||||
from funkwhale_api.users.models import User
|
||||
|
||||
from . import filters, models
|
||||
from .registries import registry
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue