keras-team/keras-autodoc

Extend the doctoring for the `Args` argument too

Anselmoo opened this issue · 0 comments

Adding Args

is it possible to extend the if comparison by Args, too?

According to https://google.github.io/styleguide/pyguide.html to use Args instead of Arguments is valid as well as official proposed and allows to be consistent with other packages, too.

if section_title == "Arguments":

Workaround / Solution

if section_title == "Arguments" or section_title == "Args":