We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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?