mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-05-28 16:28:18 +00:00
Fixed return outside of function
This commit is contained in:
parent
1e7ea7b75a
commit
041558823e
1 changed files with 2 additions and 2 deletions
|
|
@ -118,7 +118,7 @@ class SortableAdmin(SortableAdminBase, ModelAdmin):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# Apply any sort filters to create a subset of sortable objects
|
# Apply any sort filters to create a subset of sortable objects
|
||||||
return self.get_queryset(request).filter(**filters)
|
return self.get_queryset(request).filter(**filters)
|
||||||
|
|
||||||
def sort_view(self, request):
|
def sort_view(self, request):
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue