Remove unused helpers

This commit is contained in:
Ivan Habunek 2024-04-06 15:06:59 +02:00
parent 38eca67905
commit 968a516f76
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
1 changed files with 0 additions and 18 deletions

View File

@ -9,24 +9,6 @@ from typing import Callable, TypeVar
T = TypeVar("T")
class MockResponse:
def __init__(self, response_data={}, ok=True, is_redirect=False):
self.response_data = response_data
self.content = response_data
self.ok = ok
self.is_redirect = is_redirect
def raise_for_status(self):
pass
def json(self):
return self.response_data
def retval(val):
return lambda *args, **kwargs: val
def run_with_retries(fn: Callable[..., T]) -> T:
"""
Run the the given function repeatedly until it finishes without raising an