Skip to content

Commit

Permalink
updating import syntax to pass isort test
Browse files Browse the repository at this point in the history
  • Loading branch information
guel-codes committed Jul 14, 2024
1 parent 0df866d commit f7a3741
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions taggit/admin.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from django.contrib import admin
from django.db import transaction
from django.http import JsonResponse
from django.shortcuts import render, redirect
from .forms import MergeTagsForm
from taggit.models import Tag, TaggedItem
from django.shortcuts import redirect, render
from django.urls import path

from taggit.models import Tag, TaggedItem

from .forms import MergeTagsForm


class TaggedItemInline(admin.StackedInline):
model = TaggedItem
Expand Down

0 comments on commit f7a3741

Please sign in to comment.