I'm trying to loop through the newly created list of issues to print out the keys of the issues created.
self.issues = self.jira.create_issues(field_list=self.issue_list)
for index, item in enumerate(self.issues):
issue_id = item['key']
print(f"Id: {issue_id}")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.