Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
type: ignore[reportIncompatibleMethodOverride]
Browse files Browse the repository at this point in the history
tdstein committed Dec 13, 2024
1 parent ea69159 commit f6c756a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/posit/connect/resources.py
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit f6c756a

Please sign in to comment.