Skip to content

Commit

Permalink
sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rtpg committed Sep 28, 2024
1 parent 150c025 commit 0e10963
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion taggit/management/commands/deduplicate_tags.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
from collections import defaultdict
from django.core.management.base import BaseCommand

from django.conf import settings
from django.core.management.base import BaseCommand
from django.db import transaction

from taggit.models import Tag, TaggedItem


Expand Down
4 changes: 3 additions & 1 deletion tests/test_deduplicate_tags.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
from io import StringIO

from django.conf import settings
from django.core.management import call_command
from django.test import TestCase
from django.conf import settings

from taggit.models import Tag, TaggedItem
from tests.models import Food, HousePet

Expand Down

0 comments on commit 0e10963

Please sign in to comment.