Skip to content

Commit f2f1cc0

Browse files
Fix
1 parent 5d7ac83 commit f2f1cc0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/cohere/client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from . import BaseCohereEnvironment
66
from .base_client import BaseCohere
77

8+
89
class Client(BaseCohere):
910
def __init__(
1011
self,
@@ -16,7 +17,8 @@ def __init__(
1617
timeout: typing.Optional[float] = 60,
1718
httpx_client: typing.Optional[httpx.Client] = None,
1819
):
19-
super(BaseCohere, self).__init__(
20+
BaseCohere.__init__(
21+
self,
2022
base_url=base_url,
2123
environment=environment,
2224
client_name=client_name,

0 commit comments

Comments
 (0)