应该如何使用 Google 样式的文档字符串来记录参数或返回类型旨在成为特定类型的子类?
这就是我在使用类型提示时建议子类的方式。
from typing import TYPE_CHECKING, Type
...
if TYPE_CHECKING:
from package.core import AbstractClass
def foo(bar: Type["AbstractClass"]) -> str:
...
假设上述内容是合理的,那么我如何在文档字符串中类似地记录这一点?
def foo(bar: Type["AbstractClass"]) -> str:
"""Map the class to str for no other reason then that SO question makes more sense.
Args:
bar (???): A concrete subclass of an abstract class.
Returns:
str: ...
"""
...