summaryrefslogtreecommitdiffstats
path: root/openbb_platform/core/tests/provider/utils/test_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/core/tests/provider/utils/test_client.py')
-rw-r--r--openbb_platform/core/tests/provider/utils/test_client.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbb_platform/core/tests/provider/utils/test_client.py b/openbb_platform/core/tests/provider/utils/test_client.py
index 1c88c958853..5b018994d9b 100644
--- a/openbb_platform/core/tests/provider/utils/test_client.py
+++ b/openbb_platform/core/tests/provider/utils/test_client.py
@@ -1,3 +1,5 @@
+"""Test the client helper."""
+
import gzip
import json
import zlib
@@ -80,6 +82,7 @@ class MockClientSession(client.ClientSession):
async def request( # type: ignore
self, *args, raise_for_status: bool = False, **kwargs
) -> client.ClientResponse:
+ """Mock the request method."""
response = MockResponse(*args, **kwargs)
if raise_for_status: