Does not recommend this product
Sadly Sourcery seems to heavily prefer making the code more compact and less readable, converting normal if statements to ternary, loops to comprehensions etc. This does not make the cleaner or more readable in any way. Writing something out across multiple lines is in most cases more readable than making it a single line. It has multiple times caused my linter to complain about line length and i had to undo multiple refactorings that were making the code much less readable.
I recommend Sourcery reevaluates the focus on shortening the code to actually refactoring bad patterns like range(len()).