diff --git a/src/thoughtspot_rest_api_v1/tsrestapiv1.py b/src/thoughtspot_rest_api_v1/tsrestapiv1.py index f7ef9f8..d4a1583 100644 --- a/src/thoughtspot_rest_api_v1/tsrestapiv1.py +++ b/src/thoughtspot_rest_api_v1/tsrestapiv1.py @@ -1551,7 +1551,6 @@ def user_email(self, user_guid: str, user_email: str): url = self.base_url + endpoint response = self.requests_session.put(url=url, data=post_data) response.raise_for_status() - return response.json() def user_groups_get(self, user_guid: str): endpoint = 'user/{}/groups'.format(user_guid) @@ -1571,7 +1570,6 @@ def user_groups_post(self, user_guid: str, group_guids: List[str]): response = self.requests_session.post(url=url, params=url_params) response.raise_for_status() - return response.json() # Adds to existing group membership? def user_groups_put(self, user_guid: str, group_guids: List[str]):