Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Bug: Client set in init still using public one #144

Merged
merged 4 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hatchet_sdk/hatchet.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def __init__(
config (ClientConfig, optional): Configuration for creating a new Client. Defaults to ClientConfig().
"""
if client is not None:
self.client = client
self._client = client
else:
self._client = new_client(config, debug)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hatchet-sdk"
version = "0.36.0"
version = "0.36.1"
description = ""
authors = ["Alexander Belanger <[email protected]>"]
readme = "README.md"
Expand Down
Loading