def stop_if_result_none(result):
'''stop if result none will return True if we should not retry
when result is none, False otherwise using retrying python package
'''
do_retry = result is not None
return do_retry
# Simple default retrying for calls to api
评论列表
文章目录