From 385774bc05724ff76cdd3ac43facb329149f53f7 Mon Sep 17 00:00:00 2001 From: Kyle Anderson Date: Thu, 7 Nov 2019 13:07:47 -0500 Subject: [PATCH] Autoformat --- authenticate_user.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/authenticate_user.py b/authenticate_user.py index 33bdd78..f75a846 100644 --- a/authenticate_user.py +++ b/authenticate_user.py @@ -125,8 +125,9 @@ def recognize_user(known_faces: dict, encoding_model: str = "hog", image_flip: i def recognize_user_from_database(database_loc: str = common.EMBEDDINGS_LOC, encoding_model: str = "hog", image_flip: int = None, draw_rectangles: bool = False): - return recognize_user(data_handler.load_database(database_loc), encoding_model=encoding_model, image_flip=image_flip, - draw_rectangles=draw_rectangles) + return recognize_user(data_handler.load_database(database_loc), encoding_model=encoding_model, + image_flip=image_flip, + draw_rectangles=draw_rectangles) # If this program is the main program, authenticate the user. -- GitLab