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

Commit 18049db

Browse files
macwilksrhinos
andauthored
Patch Badly Generate RESTful Client Model (#164)
* Fix Poorly Generated File * Version Bump --------- Co-authored-by: srhinos <[email protected]>
1 parent e64554d commit 18049db

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

hatchet_sdk/clients/rest/models/workflow_runs_metrics.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,17 @@
2222
from pydantic import BaseModel, ConfigDict
2323
from typing_extensions import Self
2424

25+
from hatchet_sdk.clients.rest.models.workflow_runs_metrics_counts import (
26+
WorkflowRunsMetricsCounts,
27+
)
28+
2529

2630
class WorkflowRunsMetrics(BaseModel):
2731
"""
2832
WorkflowRunsMetrics
2933
""" # noqa: E501
3034

31-
counts: Optional[Dict[str, Any]] = None
35+
counts: Optional[WorkflowRunsMetricsCounts] = None
3236
__properties: ClassVar[List[str]] = ["counts"]
3337

3438
model_config = ConfigDict(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "hatchet-sdk"
3-
version = "0.36.10"
3+
version = "0.36.11"
44
description = ""
55
authors = ["Alexander Belanger <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)