Я пытаюсь добавить наблюдателей после создания проблемы с помощью python, но при добавлении после создания проблемы появляется ошибка ниже. Кто-нибудь может помочь?
TypeError: unbound method add_watcher() must be called with JIRA instance as first argument (got unicode instance instead)
Код:
def aus_issue(self):
self.issue_aus = {
'project': {'key': 'MOS'},
'issuetype': {'name': 'Reporting'},
'summary': 'Test NDP Data Audit {} AUS'.format(Jira.date_create().strftime('%B')),
'description': self.description,
'customfield_10038': {'value': 'AUS'},
'customfield_10052': {'value': 'Ad hoc'},
'customfield_10053': {'value': 'Monthly'},
"assignee": {
"name": ""
}, 'duedate': str(Jira.sixth_day())}
self.create_aus = self.client.create_issue(fields=self.issue_aus, prefetch=True)
JIRA.add_watcher(self.create_aus.id, watcher='UserName')