Skip to content

Commit c07cc2b

Browse files
validate existing type annotations
Signed-off-by: Olamide Ojo <peterojoolamide@gmail.com>
1 parent 91366a0 commit c07cc2b

36 files changed

Lines changed: 621 additions & 378 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil
1818

1919
### Bug Fixes
2020

21-
- Fixed Core SDK package referencing a non-existent version of Secrets SDK.
21+
- Fixed Core SDK package referencing a non-existent version of Secrets SDK.
2222

2323
## `1.0.0-dev20`
2424

@@ -28,6 +28,7 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil
2828

2929
### Bug Fixes
3030

31+
- Validate existing type annotations. [#321] (https://github.com/zowe/zowe-client-python-sdk/issues/321)
3132

3233
## `1.0.0-dev19`
3334

pyproject.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,14 @@ style = "numpy"
99
check-arg-order = false
1010
require-return-section-when-returning-nothing = false
1111
quiet = true
12+
13+
[tool.mypy]
14+
files = "src"
15+
strict = true
16+
ignore_missing_imports = true
17+
namespace_packages = true
18+
explicit_package_bases = true
19+
disallow_untyped_defs = true
20+
warn_return_any = true
21+
warn_unused_ignores = true
22+
show_error_codes = true

0 commit comments

Comments
 (0)