-
-
Notifications
You must be signed in to change notification settings - Fork 144
Closed
Labels
enhancementNew feature or requestNew feature or requestwontfixThis will not be worked onThis will not be worked on
Description
It would be nice to automatically generate function/method argument types from its signature
(i.e., by calling inspect.signature
) if the docstring provides no such information.
It would be helpful in linking the difficult types.
However, it can go wrong with the TypeVar's.
def my_func(a: str, b: str = 'test', *, z: str) -> str:
"""
Some documentation here
"""
pass
Expected Behavior
Actual Behavior
Additional info
- pdoc version: 0.6.3.
WoHinDukernc
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestwontfixThis will not be worked onThis will not be worked on