MCPcopy
hub / github.com/Tencent/CodeAnalysis / get_issue_detail_preproccess

Method get_issue_detail_preproccess

ScriptsAPI.py:217–231  ·  view source on GitHub ↗
(self, base_url, org_sid, team_name, options)

Source from the content-addressed store, hash-verified

215 self.get_issues(base_url, org_sid, team_name, repo_id, project_id)
216
217 def get_issue_detail_preproccess(self, base_url, org_sid, team_name, options):
218 if options['repo_id'] is None:
219 logger.error("repo_id 不能为空!")
220 return
221 repo_id = options['repo_id']
222 if options['project_id'] is None:
223 logger.error("project_id 不能为空!")
224 return
225 project_id = options['project_id']
226 if options['issue_id'] is None:
227 logger.error("issue_id 不能为空!")
228 return
229 issue_id = options['issue_id']
230
231 self.get_issue_detail(base_url, org_sid, team_name, repo_id, project_id, issue_id)
232
233 def get_ccissues_preproccess(self, base_url, org_sid, team_name, options):
234 if options['repo_id'] is None:

Callers 1

handleMethod · 0.95

Calls 2

get_issue_detailMethod · 0.95
errorMethod · 0.80

Tested by

no test coverage detected