mirror of https://github.com/zulip/zulip.git
pep8: Add compliance with rule E261 to lister.py.
This commit is contained in:
parent
46b3c14876
commit
83db0a98ae
|
@ -76,8 +76,8 @@ def list_files(targets=[], ftypes=[], use_shebang=True, modified_only=False,
|
||||||
# throw away empty lines and non-files (like symlinks)
|
# throw away empty lines and non-files (like symlinks)
|
||||||
files = list(filter(os.path.isfile, files_gen))
|
files = list(filter(os.path.isfile, files_gen))
|
||||||
|
|
||||||
result_dict = defaultdict(list) # type: Dict[str, List[str]]
|
result_dict = defaultdict(list) # type: Dict[str, List[str]]
|
||||||
result_list = [] # type: List[str]
|
result_list = [] # type: List[str]
|
||||||
|
|
||||||
for fpath in files:
|
for fpath in files:
|
||||||
# this will take a long time if exclude is very large
|
# this will take a long time if exclude is very large
|
||||||
|
|
Loading…
Reference in New Issue