Skip to content

Commit

Permalink
Fixed response types.
Browse files Browse the repository at this point in the history
  • Loading branch information
Knucklessg1 committed May 17, 2024
1 parent cf86a0b commit 84265a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions servicenow_api/servicenow_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ def get_change_request_schedule(self, **kwargs) -> Response:
return response

@require_auth
def get_change_request_tasks(self, **kwargs) -> Response:
def get_change_request_tasks(self, **kwargs) -> Dict:
"""
Retrieve tasks associated with a specific change request.
Expand Down Expand Up @@ -1068,7 +1068,7 @@ def get_change_request_ci(self, **kwargs) -> Response:
return response

@require_auth
def get_standard_change_request_templates(self, **kwargs) -> Response:
def get_standard_change_request_templates(self, **kwargs) -> Dict:
"""
Retrieve standard change request templates based on specified parameters.
Expand Down Expand Up @@ -1132,7 +1132,7 @@ def get_standard_change_request_templates(self, **kwargs) -> Response:
return responses

@require_auth
def get_change_request_models(self, **kwargs) -> Response:
def get_change_request_models(self, **kwargs) -> Dict:
"""
Retrieve change request models based on specified parameters.
Expand Down

0 comments on commit 84265a3

Please sign in to comment.