No @staticmethod decorator PYL-R0203
Anti-pattern
Major
4 days ago2 years old
Consider using a decorator instead of calling staticmethod
317    # This is to be used only if this class is subclassed and the decorators
318    # needs to be used by the child.
319    check_page_number = staticmethod(check_page_number)
320    check_cache = staticmethod(check_cache)
Consider using a decorator instead of calling staticmethod
316
317    # This is to be used only if this class is subclassed and the decorators
318    # needs to be used by the child.
319    check_page_number = staticmethod(check_page_number)320    check_cache = staticmethod(check_cache)