mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed hanging indentation in various code.
This commit is contained in:
parent
aeb8c38178
commit
362813d628
40 changed files with 266 additions and 232 deletions
|
@ -22,12 +22,14 @@ class Company(models.Model):
|
|||
ceo = models.ForeignKey(
|
||||
Employee,
|
||||
models.CASCADE,
|
||||
related_name='company_ceo_set')
|
||||
related_name='company_ceo_set',
|
||||
)
|
||||
point_of_contact = models.ForeignKey(
|
||||
Employee,
|
||||
models.SET_NULL,
|
||||
related_name='company_point_of_contact_set',
|
||||
null=True)
|
||||
null=True,
|
||||
)
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue