def _fetch_tags_for_names(self, project_id: Text,
names: Iterable[Text]) -> Iterable[Tag]:
all_tags = {tag.Name: tag
for tag in self._fetch_project_tags(project_id)}
return [all_tags[name] for name in names]
评论列表
文章目录