Make async DELETE request Args: path: API endpoint path headers: Request headers Returns: JSON response as dictionary, or None if request failed
(self, path: str, headers: Dict[str, str])
| 147 | return await self.async_request("put", path, data=data, headers=headers) |
| 148 | |
| 149 | async def delete(self, path: str, headers: Dict[str, str]) -> Optional[Dict[str, Any]]: |
| 150 | """ |
| 151 | Make async DELETE request |
| 152 | |
| 153 | Args: |
| 154 | path: API endpoint path |
| 155 | headers: Request headers |
| 156 | |
| 157 | Returns: |
| 158 | JSON response as dictionary, or None if request failed |
| 159 | """ |
| 160 | return await self.async_request("delete", path, headers=headers) |
nothing calls this directly
no test coverage detected