Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkuzmik committed Dec 3, 2024
1 parent 91ce2d9 commit 0eda060
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sdks/python/src/opik/api_objects/opik_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
LOGGER = logging.getLogger(__name__)
OPIK_API_REQUESTS_TIMEOUT_SECONDS = 5.0


class Opik:
def __init__(
self,
Expand Down Expand Up @@ -90,7 +91,7 @@ def _initialize_streamer(
base_url=base_url,
httpx_client=httpx_client_,
)
self._rest_client._client_wrapper._timeout = OPIK_API_REQUESTS_TIMEOUT_SECONDS # See https://github.com/fern-api/fern/issues/5321
self._rest_client._client_wrapper._timeout = OPIK_API_REQUESTS_TIMEOUT_SECONDS # See https://github.com/fern-api/fern/issues/5321
rest_client_configurator.configure(self._rest_client)
self._streamer = streamer_constructors.construct_online_streamer(
n_consumers=workers,
Expand Down

0 comments on commit 0eda060

Please sign in to comment.