have the auto generated doc include private methods #184
Labels
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
Looks like the pdoc tool will not generate methods/variables that start with an underscore, as that is the pythonic way to specify "private".
Beings that Meshtastic-python is a dev library, that is not very helpful.
I've narrowed it down to this line:
https://github.com/mkinney/pdoc/blob/master/pdoc/__init__.py#L409
I've changed it to this:
return not ident_name.startswith("__")
Now our doc includes more of what we want. I need to see if I can pass a command line arg to pdoc or add a config setting or something.
The text was updated successfully, but these errors were encountered: