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

Commit 8983536

Browse files
committed
fix: lint
1 parent 9823721 commit 8983536

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,3 +162,4 @@ cython_debug/
162162
#.idea/
163163

164164
openapitools.json
165+
.python-version

hatchet_sdk/hatchet.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ class HatchetRest:
190190
def __init__(self, config: ClientConfig = ClientConfig()):
191191
self.rest = RestApi(config.server_url, config.token, config.tenant_id)
192192

193+
193194
class Hatchet:
194195
"""
195196
Main client for interacting with the Hatchet SDK.

hatchet_sdk/loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ def validate_tenant_id(cls, tenant_id: str, info: ValidationInfo) -> str:
104104
## if not host_port:
105105
## ## extract host and port from token
106106
## server_url, grpc_broadcast_address = get_addresses_from_jwt(token)
107-
## host_port = grpc_broadcast_address
107+
## host_port = grpc_broadcast_address

hatchet_sdk/utils/tracing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ def parse_carrier_from_metadata(metadata: dict[str, Any] | None) -> Context | No
7979
TraceContextTextMapPropagator().extract(_ctx)
8080
if (_ctx := metadata.get(OTEL_CARRIER_KEY))
8181
else None
82-
)
82+
)

0 commit comments

Comments
 (0)