Skip to content

Commit 2cc3b41

Browse files
committed
Fix the indentation
1 parent 5a72847 commit 2cc3b41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rest_framework/utils/model_meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def _get_reverse_relationships(opts):
147147
# The backward implementation can be found in the Django Documentation
148148
# See: https://docs.djangoproject.com/en/1.9/ref/models/meta/#migrating-from-the-old-api
149149
all_related_to_many_objects = [
150-
f for f in opts.get_fields(include_hidden=True)
150+
f for f in opts.get_fields(include_hidden=True)
151151
if f.many_to_many and f.auto_created
152152
]
153153

0 commit comments

Comments
 (0)