我在stubs/my_types/__init__.py
__all__ = ["Flag"]
Flag = TypedDict(
'Flag', {
'id': int
})
在我的主要源程序中,我用
导入它from stubs.my_types import Flag
有一个我用
注释的功能def do_stuff(thing: int) -> List[Flag]:
我已将MYPYPATH设置为主要源程序所在的位置,但VsCode仍将Flag
显示为Any
类型。如何让它显示正确的类型?