You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
334 B
15 lines
334 B
from disco.api.client import APIClient as _APIClient
|
|
|
|
|
|
class CallContainer(object):
|
|
def __init__(self):
|
|
self.calls = []
|
|
|
|
def __call__(self, *args, **kwargs):
|
|
self.calls.append((args, kwargs))
|
|
|
|
|
|
class APIClient(_APIClient):
|
|
def __init__(self):
|
|
self.client = None
|
|
self.http = CallContainer()
|
|
|