Method
create_comments
(
self,
project_id: str = "",
topic_id: str = "",
data: Any = None,
params: Any = None,
)
Source from the content-addressed store, hash-verified
| 341 | pass |
| 342 | |
| 343 | def create_comments( |
| 344 | self, |
| 345 | project_id: str = "", |
| 346 | topic_id: str = "", |
| 347 | data: Any = None, |
| 348 | params: Any = None, |
| 349 | ) -> tuple[int, str]: |
| 350 | return self.post( |
| 351 | f"/projects/{project_id}/topics/{topic_id}/comments", |
| 352 | data=data, |
| 353 | ) |
| 354 | |
| 355 | def get_comment(self, project_id: str = "", topic_id: str = "", comment_id: str = "") -> dict[str, Any]: |
| 356 | return self.get( |
Callers
nothing calls this directly
Tested by
no test coverage detected