Greating,请考虑以下代码。
from abc import ABC, abstractmethod
class Interface(ABC):
@abstractmethod
def method(self) -> None:
pass
class A(Interface):
def method(self) -> None:
pass
class B(Interface):
def method(self) -> None:
pass
mapping = {'A': A, 'B': B}
# does NOT pass mypy checks
def create_map(param: str) -> Interface:
if param in mapping:
return mapping[param]()
else:
raise NotImplementedError()
# passes mypy checks
def create_if(param: str) -> Interface:
if param == 'A':
return A()
elif param == 'B':
return B()
else:
raise NotImplementedError()
由于某些原因,create_if
通过了所有mypy
类型检查,但create_map
没有通过。这两个功能的reveal_type
是'def (param: builtins.str) -> test.Interface'
。
我得到的错误与尝试直接实例化一个抽象类(这是奇怪的considering this reference for mypy)一样。
error: Cannot instantiate abstract class 'Interface' with abstract attribute 'method'
此外,如果我现在制作mapping = {'A': A}
(即删除'B': B
),create_map
也可以通过。
有人可以阐明这一点吗?