mirror of
https://github.com/brygphilomena/pyironscales.git
synced 2025-12-05 23:12:34 +00:00
It was still broken and I had to fix it anyway
This commit is contained in:
parent
b242ca0a2b
commit
efdc6a909e
2 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "pyironscales"
|
||||
version = "0.1.3"
|
||||
version = "0.1.4"
|
||||
authors = [
|
||||
{ name="Peter Annabel", email="peter.annabel@gmail.com" },
|
||||
]
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ class IncidentIdStatsRemediationStatusesEndpoint(
|
|||
IGettable[RemediationStatusesStats, IronscalesRequestParams],
|
||||
):
|
||||
def __init__(self, client, parent_endpoint=None) -> None:
|
||||
IronscalesEndpoint.__init__(self, client, "*", parent_endpoint=parent_endpoint)
|
||||
IronscalesEndpoint.__init__(self, client, "remediation-statuses/", parent_endpoint=parent_endpoint)
|
||||
IGettable.__init__(self, RemediationStatusesStats)
|
||||
|
||||
def get(
|
||||
|
|
@ -23,7 +23,7 @@ class IncidentIdStatsRemediationStatusesEndpoint(
|
|||
params: IronscalesRequestParams | None = None,
|
||||
) -> RemediationStatusesStats:
|
||||
"""
|
||||
Performs a GET request against the /incident/{id}/stats/remediation-statuses endpoint.
|
||||
Performs a GET request against the /incident/{id}/stats/remediation-statuses/ endpoint.
|
||||
|
||||
Parameters:
|
||||
data (dict[str, Any]): The data to send in the request body.
|
||||
|
|
|
|||
Loading…
Reference in a new issue