I know it is good style in other languages (C#, JAVA, ...) to make "private" methods (using two underscores) static if possible. Is there any recommendation for Python?
I would rather not make them static, because they are only private (I don't want to move them to utility classes and they are not performance relevant) and I want to avoid cluttering my code with decorators. On the other hand, the static code analyzer tells me to do so (and I want to write code in the "Pythonic" way).