Skip to content

Commit

Permalink
Merge pull request #287 from zowe/Refactor-function-definitions
Browse files Browse the repository at this point in the history
Refactor function definitions
  • Loading branch information
zFernand0 authored Jun 25, 2024
2 parents 98bd40b + 160274e commit 9c6338b
Show file tree
Hide file tree
Showing 5 changed files with 298 additions and 197 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil
- Added logger class to core SDK [#185](https://github.com/zowe/zowe-client-python-sdk/issues/185)
- Added classes for handling `Datasets`, `USSFiles`, and `FileSystems` in favor of the single Files class. [#264](https://github.com/zowe/zowe-client-python-sdk/issues/264)
- Refactored tests into proper folders and files and add more tests [#265](https://github.com/zowe/zowe-client-python-sdk/issues/265)
- **Breaking:** Standardized `response` outputs based on `Content-Type`. [#266](https://github.com/zowe/zowe-client-python-sdk/issues/266)
- **Breaking:** Standardized `response` outputs based on `Content-Type`. [#266](https://github.com/zowe/zowe-client-python-sdk/issues/266)
- Refactored `create` function in `Datasets` class to accept `DatasetOptions` class as parameters. [#214] (https://github.com/zowe/zowe-client-python-sdk/issues/214)

### Bug Fixes

Expand Down
4 changes: 2 additions & 2 deletions src/zos_files/zowe/zos_files_for_zowe_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

from . import constants, exceptions
from .datasets import DatasetOption, Datasets
from .file_system import FileSystems
from .files import Files
from .datasets import Datasets
from .uss import USSFiles
from .file_system import FileSystems
Loading

0 comments on commit 9c6338b

Please sign in to comment.