Skip to content

Commit 7f24ef2

Browse files
committed
Fix flake8 format
1 parent af2c4a6 commit 7f24ef2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rest_framework/generics.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Generic views that provide commonly needed behaviour.
33
"""
44
from typing import Iterable
5+
56
from django.core.exceptions import ValidationError
67
from django.db.models.query import QuerySet
78
from django.http import Http404
@@ -77,7 +78,7 @@ def get_queryset(self):
7778
# Ensure queryset is re-evaluated on each request.
7879
queryset = queryset.all()
7980
return queryset
80-
81+
8182
def get_prefetch_related(self):
8283
"""
8384
Get the list of prefetch related objects for self.queryset or instance.

0 commit comments

Comments
 (0)