MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / get_comment

Method get_comment

src/bcf/bcf/v3/bcfapi.py:355–363  ·  view source on GitHub ↗
(self, project_id: str = "", topic_id: str = "", comment_id: str = "")

Source from the content-addressed store, hash-verified

353 )
354
355 def get_comment(self, project_id: str = "", topic_id: str = "", comment_id: str = "") -> dict[str, Any]:
356 return self.get(
357 f"/projects/{project_id}/topics/{topic_id}/comments/{comment_id}",
358 {
359 "project_id": project_id,
360 "topic_id": topic_id,
361 "comment_id": comment_id,
362 },
363 )
364
365 def delete_comment(self, project_id: str = "", topic_id: str = "", comment_id: str = "") -> tuple[int, str]:
366 return self.delete(f"/projects/{project_id}/topics/{topic_id}/comments/{comment_id}")

Callers

nothing calls this directly

Calls 1

getMethod · 0.95

Tested by

no test coverage detected