@@ -1906,7 +1906,9 @@ def get_pull_requests_participants(
19061906 params ["limit" ] = limit
19071907 return self ._get_paged (url , params )
19081908
1909- def assign_pull_request_participant_role (self , project_key : str , repository_slug : str , pull_request_id : int , role : str , user : str ) -> dict :
1909+ def assign_pull_request_participant_role (
1910+ self , project_key : str , repository_slug : str , pull_request_id : int , role : str , user : str
1911+ ) -> dict :
19101912 """
19111913 Assign a role to a user for a pull request
19121914 :param project_key: The project key
@@ -2122,7 +2124,9 @@ def _url_pull_request_blocker_comments(self, project_key, repository_slug, pull_
21222124 url = "{}/blocker-comments" .format (self ._url_pull_request (project_key , repository_slug , pull_request_id ))
21232125 return url
21242126
2125- def add_pull_request_blocker_comment (self , project_key : str , repository_slug : str , pull_request_id : int , text : dict , severity : str ) -> dict :
2127+ def add_pull_request_blocker_comment (
2128+ self , project_key : str , repository_slug : str , pull_request_id : int , text : dict , severity : str
2129+ ) -> dict :
21262130 """
21272131 Add a comment to a pull request that blocks the merge
21282132 :param project_key: The project key
0 commit comments