mirror of
https://github.com/zulip/zulip.git
synced 2026-06-18 21:01:52 +08:00
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)
|
||||
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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user