def retry_if_rate_limit_error(exception): """Return True if we should retry (in this case when it's a rate_limit error), False otherwise""" return isinstance(exception, RateLimitException)