返回自定义类对象列表的类型注释

时间:2018-09-15 22:51:49

标签: python python-3.x duck-typing python-typing

列表[汽车] 返回类型中,汽车未定义。有什么方法可以注释这些方法吗?

from typing import List

class Car:
    ...
    @staticmethod
    def all() -> List[Car]:
        return Car._get_cars_from_db()

0 个答案:

没有答案