diff --git a/abr-testing/abr_testing/automation/jira_tool.py b/abr-testing/abr_testing/automation/jira_tool.py index b9a656aabde..a98b023a44a 100644 --- a/abr-testing/abr_testing/automation/jira_tool.py +++ b/abr-testing/abr_testing/automation/jira_tool.py @@ -122,7 +122,7 @@ def create_ticket( summary: str, description: str, project_key: str, - reporter_id:str, + reporter_id: str, issue_type: str, priority: str, components: list, @@ -135,9 +135,7 @@ def create_ticket( "project": {"id": "10273", "key": project_key}, "issuetype": {"name": issue_type}, "summary": summary, - "reporter": { - "id": reporter_id - }, + "reporter": {"id": reporter_id}, "parent": {"key": robot}, "priority": {"name": priority}, "components": [{"name": component} for component in components], @@ -228,8 +226,8 @@ def post_attachment_to_ticket(self, issue_id: str, attachment_path: str) -> None "reporter_id", metavar="REPORTER_ID", type=str, - nargs=1, - help="JIRA Reporter ID." + nargs=1, + help="JIRA Reporter ID.", ) # TODO: improve help comment on jira board id. parser.add_argument(