Inherit python typing structure from base class

后端 未结 0 1906
無奈伤痛
無奈伤痛 2021-01-07 05:23
from typing import Dict

class MyDict(dict):
   pass

def f() -> Dict[int, int]: # works
    return {}

def g() -> MyDict[int, int]: # expected no type argumen         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题