diff --git a/src/posit/connect/resources.py b/src/posit/connect/resources.py index cc5c7904..e607c599 100644 --- a/src/posit/connect/resources.py +++ b/src/posit/connect/resources.py @@ -245,7 +245,7 @@ def __init__(self, ctx: Context, path: str, **attributes): def destroy(self) -> None: self._ctx.client.delete(self._path) - def update(self, **attributes): # type: ignore + def update(self, **attributes): # type: ignore[reportIncompatibleMethodOverride] response = self._ctx.client.put(self._path, json=attributes) result = response.json() super().update(**result)