From 8d81c710a7658941f48a874f992ddd0410515991 Mon Sep 17 00:00:00 2001 From: Aymeric Chaumont <aymeric.chaumont@student-cs.fr> Date: Thu, 21 Jul 2022 11:12:56 +0200 Subject: [PATCH] linting --- backend/video_capture.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/video_capture.py b/backend/video_capture.py index 0627c54..9e9e1cc 100644 --- a/backend/video_capture.py +++ b/backend/video_capture.py @@ -38,9 +38,9 @@ async def handle_cameras(): models.OpeningHours.close_time >= current_time).first() is not None if is_open: - count_prediction = 0 # estimated number of people in the restaurant - open_checkouts = 0 # estimated number of open checkouts in the restaurant - cams_working = True # boolean indicating whether or not all cams are working in the restaurant + count_prediction = 0 # estimated number of people in the restaurant + open_checkouts = 0 # estimated number of open checkouts in the restaurant + cams_working = True # boolean indicating whether or not all cams are working in the restaurant for camera in restaurant["cameras"]: # connection to the rtsp stream -- GitLab