sphinx-notes / markdown-builder

sphinx builder that outputs markdown files.
https://codejam.ninja
MIT License
4 stars 1 forks source link

Support type annotation for return values #6

Closed lecram closed 2 years ago

lecram commented 2 years ago

Currently this plugin raises an exception when trying to parse function/method signatures if a type annotation is given for the return value, e.g.:

def foo() -> None:
    pass

This change adds support for handling this.