Rest API - Webhooks and Events
Find the error in this retry logic snippet:
def fetch_data():
retries = 3
while retries > 0:
response = api_call()
if response.status_code == 200:
return response.data
retries -= 1
return None
retries -= 1