From 21681782ce4f011c6f7362345508d014efae8552 Mon Sep 17 00:00:00 2001
From: Ernesto Rico Schmidt <ernesto@helsinki.at>
Date: Thu, 6 Feb 2025 12:40:11 -0400
Subject: [PATCH] refactor: use a readable way to get the last timeslot

---
 program/services.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/program/services.py b/program/services.py
index 0ec3c79..8f0af24 100644
--- a/program/services.py
+++ b/program/services.py
@@ -373,7 +373,7 @@ def make_conflicts(data: ScheduleData, schedule_pk: int | None, show_pk: int) ->
             and new_schedule.last_date > existing_schedule.last_date
         ):
             last_timeslot = (
-                TimeSlot.objects.filter(schedule=existing_schedule).order_by("start").reverse()[0]
+                TimeSlot.objects.filter(schedule=existing_schedule).order_by("start").last()
             )
             schedule_copy.first_date = last_timeslot.start.date() + timedelta(days=1)
 
-- 
GitLab