@@ -1906,7 +1906,9 @@ def get_pull_requests_participants(
1906
1906
params ["limit" ] = limit
1907
1907
return self ._get_paged (url , params )
1908
1908
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 :
1910
1912
"""
1911
1913
Assign a role to a user for a pull request
1912
1914
:param project_key: The project key
@@ -2122,7 +2124,9 @@ def _url_pull_request_blocker_comments(self, project_key, repository_slug, pull_
2122
2124
url = "{}/blocker-comments" .format (self ._url_pull_request (project_key , repository_slug , pull_request_id ))
2123
2125
return url
2124
2126
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 :
2126
2130
"""
2127
2131
Add a comment to a pull request that blocks the merge
2128
2132
:param project_key: The project key
0 commit comments