Skip to content

Commit 7700cbb

Browse files
Test
1 parent 52360b2 commit 7700cbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cohere/client_v2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from concurrent.futures import ThreadPoolExecutor
88

99

10-
class ClientV2(V2Client, Client): # type: ignore
10+
class ClientV2(Client, V2Client): # type: ignore
1111
def __init__(
1212
self,
1313
api_key: typing.Optional[typing.Union[str,
@@ -34,7 +34,7 @@ def __init__(
3434
)
3535

3636

37-
class AsyncClientV2(AsyncV2Client, AsyncClient): # type: ignore
37+
class AsyncClientV2(AsyncClient, AsyncV2Client): # type: ignore
3838
def __init__(
3939
self,
4040
api_key: typing.Optional[typing.Union[str,

0 commit comments

Comments
 (0)