我应该如何注释可以返回多种不同类型对象的方法的返回类型?
具体来说,这是我遇到问题的方法:
def _bin_factory(self) -> Any:
"""
Returns a bin with the specificed algorithm,
heuristic, and dimensions
"""
if self.algorithm == 'guillotine':
return guillotine.Guillotine(self.bin_width, self.bin_height, self.rotation,
self.rectangle_merge, self.split_heuristic)
elif self.algorithm == 'shelf':
return shelf.Sheet(self.bin_width, self.bin_height, self.rotation, self.wastemap)
elif self.algorithm == 'maximal_rectangle':
return maximal_rectangles.MaximalRectangle(self.bin_width, self.bin_height, self.rotation)
raise ValueError('Error: No such Algorithm')
我试过Union[shelf.Sheet, guillotine.Guillotine, maximal_rectangles.MaximalRectangle]
了,但是 MyPy 给了我很多错误,我稍后在我的代码中使用了 _bin_factory 方法。这些错误似乎围绕着这样一个事实,即 Union 中的所有三种对象类型都具有彼此不同的属性。