Skip to content

Commit

Permalink
Merge pull request #647 from jdufresne/str
Browse files Browse the repository at this point in the history
Remove Unnecessary str() call
  • Loading branch information
Asif Saif Uddin committed Oct 27, 2019
2 parents 4ea6e92 + 47398f2 commit 7a01ee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taggit/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def tagged_object_list(request, slug, queryset, **kwargs):
queryset = queryset()
kwargs["slug"] = slug
tag_list_view = type(
str("TagListView"),
"TagListView",
(TagListMixin, ListView),
{"model": queryset.model, "queryset": queryset},
)
Expand Down

0 comments on commit 7a01ee6

Please sign in to comment.