(self, project_id: str = "", data: Any = None)
| 237 | ) |
| 238 | |
| 239 | def update_project(self, project_id: str = "", data: Any = None) -> tuple[int, str]: |
| 240 | url = f"{self.baseurl}/projects/{project_id}" |
| 241 | headers = {"Authorization": f"Bearer {self.foundation_client.get_access_token()}"} |
| 242 | resp = requests.put(url, headers=headers, data=data) |
| 243 | return resp.status_code, resp.text |
| 244 | |
| 245 | def get_extensions(self, project_id: str = "") -> dict[str, Any]: |
| 246 | return self.get( |
nothing calls this directly
no test coverage detected