PyCharm类型提示类/实例变量

时间:2017-10-09 14:58:44

标签: python pycharm type-hinting

我一直在尝试这个:

class Symbol:
    name: str
    board: str
    sector: str

用于类/实例变量的类型提示。

我没有收到任何错误,但是当我违反提示时PyCharm没有给我任何警告,例如设置

self.name = 123

然而,当我违反暗示方法签名时,PyCharm会给我警告,如

def __init__(self, filename: str):

当我尝试调用constructer并将filename设置为非str的任何内容时

是否有可能让PyCharm对类/实例变量的类型提示发出警告?

0 个答案:

没有答案