Skip to content

Commit

Permalink
Run isort
Browse files Browse the repository at this point in the history
  • Loading branch information
jaap3 committed Mar 7, 2024
1 parent a775267 commit c48158f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion testproject/testapp/views.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.shortcuts import get_object_or_404
from django.views.generic import UpdateView, DetailView
from django.views.generic import DetailView, UpdateView

from .forms import CommentForm
from .models import Comment, Post
Expand Down
2 changes: 1 addition & 1 deletion testproject/tests/test_sanitizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from django.test.utils import override_settings

from djrichtextfield import settings
from djrichtextfield.sanitizer import noop, SanitizerMixin
from djrichtextfield.sanitizer import SanitizerMixin, noop


class TestSanitizerMixin(TestCase):
Expand Down
3 changes: 1 addition & 2 deletions testproject/urls.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from django.urls import include, path
from django.contrib import admin
from django.urls import include, path

from .testapp.views import CommentCreateView, PostDetail


admin.autodiscover()

urlpatterns = [
Expand Down

0 comments on commit c48158f

Please sign in to comment.