diff --git a/src/posit/connect/oauth/associations.py b/src/posit/connect/oauth/associations.py index cd6124ea..f8e96b4d 100644 --- a/src/posit/connect/oauth/associations.py +++ b/src/posit/connect/oauth/associations.py @@ -1,6 +1,5 @@ """OAuth association resources.""" -from os import walk from typing import List from ..resources import Resource, ResourceParameters, Resources @@ -75,7 +74,7 @@ def delete(self) -> None: ) url = self.params.url + path self.params.session.put(url, json=data) - + def update(self, integration_guid: str) -> None: """Set integration associations.""" data = [{"oauth_integration_guid": integration_guid}]