I was wondering if you use @staticmethod decorator in your code.
Personally I don't use it, since it takes more letters to write @staticmethod then self.
The only benefit (which comes to me) from using it may be a better clarity of a code, but since I usually write a method description for sphinx, I always state whether a method is using object or not.
Or maybe I should start using @staticmethod decorator ?