Skip to content

Commit 981a7d8

Browse files
committed
Fix flake8 error
1 parent 342471a commit 981a7d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

face_recognition/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def process_images_in_process_pool(images_to_check, known_names, known_face_enco
7878
@click.argument('known_people_folder')
7979
@click.argument('image_to_check')
8080
@click.option('--cpus', default=1, help='number of CPU cores to use in parallel (can speed up processing lots of images). -1 means "use all in system"')
81-
@click.option('--tolerance', default=0.6, help='Tolerance to use for face comparisons. Default is 0.6 and lower is more strict matching. Lower this if you get multiple matches for the same person. Try 0.54 for example.')
81+
@click.option('--tolerance', default=0.6, help='Tolerance for face comparisons. Default is 0.6. Lower this if you get multiple matches for the same person.')
8282
def main(known_people_folder, image_to_check, cpus, tolerance):
8383
known_names, known_face_encodings = scan_known_people(known_people_folder)
8484

0 commit comments

Comments
 (0)