mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
PEP8 cleanup
Signed-off-by: Jason Myers <jason@jasonamyers.com>
This commit is contained in:
parent
0fdb692c6c
commit
7a61c68c50
128 changed files with 739 additions and 206 deletions
|
@ -6,15 +6,18 @@ from django.utils.encoding import python_2_unicode_compatible
|
|||
class School(models.Model):
|
||||
name = models.CharField(max_length=100)
|
||||
|
||||
|
||||
class Parent(models.Model):
|
||||
name = models.CharField(max_length=100)
|
||||
|
||||
|
||||
class Child(models.Model):
|
||||
mother = models.ForeignKey(Parent, related_name='mothers_children')
|
||||
father = models.ForeignKey(Parent, related_name='fathers_children')
|
||||
school = models.ForeignKey(School)
|
||||
name = models.CharField(max_length=100)
|
||||
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class Poet(models.Model):
|
||||
name = models.CharField(max_length=100)
|
||||
|
@ -22,6 +25,7 @@ class Poet(models.Model):
|
|||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class Poem(models.Model):
|
||||
poet = models.ForeignKey(Poet)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue