File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,12 @@ Mandatory conditions
3030
31311. If you adding new method - add description to docs
32322. If you make changes in current methods - add changes to docs
33+ 3. If you sent the PR, please validate via black _
3334
3435Please follow the code style in the docs.
3536
37+ .. _black : https://black.readthedocs.io/en/stable/editor_integration.html
38+
3639Connect on Chat for any queries
3740---------------------------------
3841
Original file line number Diff line number Diff line change @@ -728,7 +728,7 @@ def upload_plugin(self, plugin_path):
728728 ).headers ["upm-token" ]
729729 url = "rest/plugins/1.0/?token={upm_token}" .format (upm_token = upm_token )
730730 return self .post (url , files = files , headers = self .no_check_headers )
731-
731+
732732 def create_request_type (
733733 self ,
734734 service_desk_id ,
@@ -749,9 +749,9 @@ def create_request_type(
749749 "issueTypeId" : request_type_id ,
750750 "name" : request_name ,
751751 "description" : request_description ,
752- "helpText" : request_help_text
752+ "helpText" : request_help_text ,
753753 }
754-
754+
755755 url = "rest/servicedeskapi/servicedesk/{}/requesttype" .format (service_desk_id )
756756
757757 return self .post (url , headers = self .experimental_headers , data = data )
You can’t perform that action at this time.
0 commit comments