Skip to content

Commit

Permalink
review: fix lint issue and update changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Fernando Rijo Cedeno <[email protected]>
  • Loading branch information
zFernand0 committed Nov 18, 2024
1 parent db4cba3 commit 7768995
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil
### Enhancements

- Turning of logger at the class-constructor level [#316] (https://github.com/zowe/zowe-client-python-sdk/issues/316)
- Added support for commonly used environmental variables, like `REQUESTS_CA_BUNDLE` and `CURL_CA_BUNDLE`. [#346](https://github.com/zowe/zowe-client-python-sdk/issues/346)

### Bug Fixes

Expand Down
3 changes: 2 additions & 1 deletion src/core/zowe/core_for_zowe_sdk/request_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ def __send_request(self, stream: bool = False):
stream : bool
Flag indicates whether it is a streaming requests.
"""
self.__response = self.session.request(method=self.__method, stream=stream, **self.session_arguments, **self.__request_arguments)
self.__response = self.session.request(
method=self.__method, stream=stream, **self.session_arguments, **self.__request_arguments)

def __del__(self):
"""Clean up the REST session object once it is no longer needed anymore."""
Expand Down

0 comments on commit 7768995

Please sign in to comment.