@@ -223,7 +223,7 @@ def get_application_role(self, role_key):
223223 def get_attachments_ids_from_issue (self , issue ):
224224 """
225225 Get attachments IDs from jira issue
226- :param jira issue key: str
226+ :param issue: str : jira issue key
227227 :return: list of integers attachment IDs
228228 """
229229 issue_id = self .get_issue (issue )["fields" ]["attachment" ]
@@ -1382,7 +1382,7 @@ def get_issue_labels(self, issue_key):
13821382
13831383 def update_issue (self , issue_key , update ):
13841384 """
1385- :param issue : the issue to update
1385+ :param issue_key : the issue to update
13861386 :param update: the update to make
13871387 :return: True if successful, False if not
13881388 """
@@ -1391,7 +1391,7 @@ def update_issue(self, issue_key, update):
13911391
13921392 def label_issue (self , issue_key , labels ):
13931393 """
1394- :param issue : the issue to update
1394+ :param issue_key : the issue to update
13951395 :param labels: the labels to add
13961396 :return: True if successful, False if not
13971397 """
@@ -1400,7 +1400,7 @@ def label_issue(self, issue_key, labels):
14001400
14011401 def unlabel_issue (self , issue_key , labels ):
14021402 """
1403- :param issue : the issue to update
1403+ :param issue_key : the issue to update
14041404 :param labels: the labels to remove
14051405 :return: True if successful, False if not
14061406 """
0 commit comments