From 83db0a98ae331d6e9fa571ccb8fda3221fda8367 Mon Sep 17 00:00:00 2001 From: Aditya Bansal Date: Sun, 7 May 2017 20:27:28 +0530 Subject: [PATCH] pep8: Add compliance with rule E261 to lister.py. --- tools/lister.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/lister.py b/tools/lister.py index f0365722f0..3f3b0a63a5 100755 --- a/tools/lister.py +++ b/tools/lister.py @@ -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