numpydoc
numpydoc copied to clipboard
Documentation for Excluding
Found a potential bug. I'm noticing the following pattern for excluding a method as shown in docs is generating a malformed toml error:
exclude = [
"\.__init__$",
]
But if I use the following it is working.
exclude = [
"__init__$",
]
Is that happening for anyone else?
Note that this may be related to how toml handles single and double quoted strings differently.