From 38ea64fefab18a79b9d659d61218102280ffcd23 Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Thu, 19 Aug 2021 13:36:18 +0200
Subject: [PATCH] indentation

---
 smash/web/models/holiday.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/smash/web/models/holiday.py b/smash/web/models/holiday.py
index b8d0f44d..58df1e9d 100644
--- a/smash/web/models/holiday.py
+++ b/smash/web/models/holiday.py
@@ -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)
-- 
GitLab