mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	pep8: Add compliance with rule E261 to lister.py.
This commit is contained in:
		
				
					committed by
					
						
						Tim Abbott
					
				
			
			
				
	
			
			
			
						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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user