Fix flake warnings.

This commit is contained in:
Brandon Amos 2016-03-30 14:18:26 -04:00
parent 8784e2d639
commit 92c152faa3
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,6 @@
import os
import shutil
import sys
lfwDir = '../lfw/raw'
lfwNames = os.listdir(lfwDir)
@ -10,6 +9,7 @@ lfwNames = [name.replace("_", "").lower() for name in lfwNames]
names = os.listdir('raw')
def inLfw(name):
name = name.strip().lower()
for lfwName in lfwNames: