pep8: Add compliance with rule E261 to lister.py.

This commit is contained in:
Aditya Bansal 2017-05-07 20:27:28 +05:30 committed by Tim Abbott
parent 46b3c14876
commit 83db0a98ae
1 changed files with 2 additions and 2 deletions

View File

@ -76,8 +76,8 @@ def list_files(targets=[], ftypes=[], use_shebang=True, modified_only=False,
# throw away empty lines and non-files (like symlinks)
files = list(filter(os.path.isfile, files_gen))
result_dict = defaultdict(list) # type: Dict[str, List[str]]
result_list = [] # type: List[str]
result_dict = defaultdict(list) # type: Dict[str, List[str]]
result_list = [] # type: List[str]
for fpath in files:
# this will take a long time if exclude is very large