Skip to content
Snippets Groups Projects
Commit 38ea64fe authored by Piotr Gawron's avatar Piotr Gawron
Browse files

indentation

parent a67cd0d9
No related branches found
No related tags found
1 merge request!336Pylint checks
......@@ -22,7 +22,10 @@ class Holiday(models.Model):
verbose_name='Comments'
)
kind = models.CharField(max_length=1, choices=AVAILABILITY_CHOICES, default=AVAILABILITY_HOLIDAY, help_text='Defines the kind of availability. Either Holiday or Extra Availability.')
kind = models.CharField(max_length=1,
choices=AVAILABILITY_CHOICES,
default=AVAILABILITY_HOLIDAY,
help_text='Defines the kind of availability. Either Holiday or Extra Availability.')
def __str__(self):
return "%s %s" % (self.person.first_name, self.person.last_name)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment