From 97c667911f62a617f2013554754d35a63ccba69f Mon Sep 17 00:00:00 2001 From: markus Date: Thu, 5 Nov 2020 16:01:08 +0100 Subject: [PATCH] split long line --- cara/apps/calculator/model_generator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cara/apps/calculator/model_generator.py b/cara/apps/calculator/model_generator.py index 1a8a3633..c02bdff5 100644 --- a/cara/apps/calculator/model_generator.py +++ b/cara/apps/calculator/model_generator.py @@ -95,8 +95,8 @@ class FormData: enter_times.append(minute + coffee_period // 2 + self.coffee_duration) # These lists represent the times where the infected person leaves or enters the room, respectively, sorted in - # reverse order. Note that these lists allows the person to "leave" when they should not even be present in the room - # The following loop handles this. + # reverse order. Note that these lists allows the person to "leave" when they should not even be present in the + # room. The following loop handles this. leave_times.sort(reverse=True) enter_times.sort(reverse=True)