Found a potential bug. I'm noticing the following pattern for excluding a method as shown in docs is generating a malformed toml error: ```toml exclude = [ "\.__init__$", ] ``` But if I use the following it is working. ```toml exclude = [ "__init__$", ] ``` Is that happening for anyone else?