summaryrefslogtreecommitdiff
path: root/tests/foreign_object
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2018-03-16 10:54:34 +0100
committerGitHub <noreply@github.com>2018-03-16 10:54:34 +0100
commit362813d6287925b8f63f0b107c55a74d95f5825e (patch)
treeefd69a3deb9e837624279e5abfdd8d55d57dcd7c /tests/foreign_object
parentaeb8c381789ad93866223f8bd07d09ae5e2edd9e (diff)
downloaddjango-362813d6287925b8f63f0b107c55a74d95f5825e.tar.gz
Fixed hanging indentation in various code.
Diffstat (limited to 'tests/foreign_object')
-rw-r--r--tests/foreign_object/models/person.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/foreign_object/models/person.py b/tests/foreign_object/models/person.py
index a41d9d96d9..cd04d1eeda 100644
--- a/tests/foreign_object/models/person.py
+++ b/tests/foreign_object/models/person.py
@@ -88,7 +88,8 @@ class Friendship(models.Model):
on_delete=models.CASCADE,
from_fields=['from_friend_country', 'from_friend_id'],
to_fields=['person_country_id', 'id'],
- related_name='from_friend')
+ related_name='from_friend',
+ )
to_friend_country = models.ForeignObject(
Country,