mypy: Fix casing for List type.

This commit is contained in:
umkay 2017-05-22 15:26:23 -07:00 committed by Eklavya Sharma
parent a67e427293
commit 09e1136cc8
1 changed files with 2 additions and 2 deletions

View File

@ -61,8 +61,8 @@ def resolve_conflicts(conflicts, files_list):
if __name__ == '__main__':
while True:
conflicts = [] # type: list[str]
stack = [] # type: list[str]
conflicts = [] # type: List[str]
stack = [] # type: List[str]
files_list = [os.path.basename(path) for path in glob.glob("zerver/migrations/????_*.py")]
file_index = [file[0:4] for file in files_list]