mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	mypy: Fix casing for List type.
This commit is contained in:
		@@ -61,8 +61,8 @@ def resolve_conflicts(conflicts, files_list):
 | 
				
			|||||||
if __name__ == '__main__':
 | 
					if __name__ == '__main__':
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    while True:
 | 
					    while True:
 | 
				
			||||||
        conflicts = []  # type: list[str]
 | 
					        conflicts = []  # type: List[str]
 | 
				
			||||||
        stack = []  # type: list[str]
 | 
					        stack = []  # type: List[str]
 | 
				
			||||||
        files_list = [os.path.basename(path) for path in glob.glob("zerver/migrations/????_*.py")]
 | 
					        files_list = [os.path.basename(path) for path in glob.glob("zerver/migrations/????_*.py")]
 | 
				
			||||||
        file_index = [file[0:4] for file in files_list]
 | 
					        file_index = [file[0:4] for file in files_list]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user