def _fetch_project_tags(self, project_id: Text) -> Iterable[Tag]:
url = self._format_tags_endpoint(project_id)
response = self._get_json(url)
return [create(Tag, _) for _ in response['Tags']]
文章目录