mirror of https://github.com/zulip/zulip.git
mypy: Fix casing for List type.
This commit is contained in:
parent
a67e427293
commit
09e1136cc8
|
@ -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]
|
||||
|
||||
|
|
Loading…
Reference in New Issue