twisted / pydoctor

This is pydoctor, an API documentation generator that works by static analysis.
https://pydoctor.readthedocs.io
Other
190 stars 51 forks source link

Inline docstring is confused if there is a comment #813

Open tristanlatr opened 3 months ago

tristanlatr commented 3 months ago
class Type(_BaseType):
    args: Sequence['Type']

    # location: NodeLocation
    """
    docs
    """

"docs" will be misinterpreted to be the docstring of Type.args. This will be an easy fix once we have #804 merged.