标签: python type-hinting mypy
Mypy使用方括号定义注释:
from typing import List def do_nothing() -> List[int]: pass
与小于和大于(<int>)不同,方括号是实际的括号([int])。 它们不能是运算符,因此会在任何适当的文本编辑器中自动关闭。
<int>
[int]
我想知道这是该选择背后的原因还是其他原因。