My requirement is: I want to update the labels for the issues present in the filter.
import jira.client
from jira.client import jira
options = {'server': 'https://URL.com"}
jira = JIRA(options, basic_auth=('username], 'password'))
issue = jira.search_issues('jqlquery')
issue.update(labels=['Test']
I'm getting attribute error which states that 'Resultlist' object has no attibute 'update'.