Skip to content

Commit

Permalink
Fix Poorly Generated File
Browse files Browse the repository at this point in the history
  • Loading branch information
srhinos committed Aug 28, 2024
1 parent e64554d commit 97b49e6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion hatchet_sdk/clients/rest/models/workflow_runs_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,17 @@
from pydantic import BaseModel, ConfigDict
from typing_extensions import Self

from hatchet_sdk.clients.rest.models.workflow_runs_metrics_counts import (
WorkflowRunsMetricsCounts,
)


class WorkflowRunsMetrics(BaseModel):
"""
WorkflowRunsMetrics
""" # noqa: E501

counts: Optional[Dict[str, Any]] = None
counts: Optional[WorkflowRunsMetricsCounts] = None
__properties: ClassVar[List[str]] = ["counts"]

model_config = ConfigDict(
Expand Down

0 comments on commit 97b49e6

Please sign in to comment.