Skip to content

Commit f6c756a

Browse files
committed
type: ignore[reportIncompatibleMethodOverride]
1 parent ea69159 commit f6c756a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/posit/connect/resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def __init__(self, ctx: Context, path: str, **attributes):
245245
def destroy(self) -> None:
246246
self._ctx.client.delete(self._path)
247247

248-
def update(self, **attributes): # type: ignore
248+
def update(self, **attributes): # type: ignore[reportIncompatibleMethodOverride]
249249
response = self._ctx.client.put(self._path, json=attributes)
250250
result = response.json()
251251
super().update(**result)

0 commit comments

Comments
 (0)