From 3193e4d43834f89f0840eb80bc52a9e89c2c1e7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Berk=20Ba=C5=9Fo=C4=9Flu?= Date: Sat, 14 Nov 2020 20:43:56 -0500 Subject: [PATCH] Fixed a Typo again. --- start_engine.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start_engine.py b/start_engine.py index 91ab4cdb2..daf2ae5d4 100644 --- a/start_engine.py +++ b/start_engine.py @@ -9,7 +9,7 @@ def start(): users = DBHelper.db.child("Users").get() try: for x in users.each(): - count = +1 + count += 1 for y in range(20): if not os.path.isdir("Facial_images/face_rec/train/User_" + str(count)): os.makedirs("Photos_of_Users/User_" + str(count)) @@ -19,7 +19,7 @@ def start(): count = 0 try: for x in users.each(): - count = +1 + count += 1 for y in range(20): if not os.path.isdir("Photos_of_Thieves/Thief_" + str(count)): os.makedirs("Photos_of_Thieves/Thief_" + str(count))