0

我正在尝试将 google-style 指令与 pdoc 一起使用,但它在我这边不起作用。我哪里错了?下面是我的代码。请帮我。:)

    def save(a: str, b:str) -> set:
        """
            Do something

            Args:
                a (str): The first parameter.
                b (str): The second parameter.

            Returns:
                Set: The return value. If result has values then Set of string, otherwise empty set.

            """

输出

做一点事

Args:a(str):第一个参数。b(str):第二个参数。

返回: Set:返回值。如果结果有值,则为字符串集,否则为空集。

4

1 回答 1

0

您是否告诉 pdoc 将您的文档字符串处理为 Google 样式的文档字符串

使用pdoc --docformat google ./alf.py,我得到以下结果:

pdoc 截图

于 2022-01-28T13:26:27.593 回答