为什么Mypy注释使用方括号

时间:2019-08-09 16:11:21

标签: python type-hinting mypy

Mypy使用方括号定义注释:

from typing import List


def do_nothing() -> List[int]:
    pass

与小于和大于(<int>)不同,方括号是实际的括号([int])。 它们不能是运算符,因此会在任何适当的文本编辑器中自动关闭。

我想知道这是该选择背后的原因还是其他原因。

0 个答案:

没有答案