Changes: Add type annotations following code conventions. Added file to the migrated files list. Change-Id: I309e8088a6f682658e15456ded6ea1dc3d3c7b79 Signed-off-by: Karan Anand <anandkarancompsci@gmail.com>
17 lines
518 B
TOML
17 lines
518 B
TOML
[build-system]
|
|
requires = ["pbr>=6.0.0", "setuptools>=64.0.0"]
|
|
build-backend = "pbr.build"
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
ignore_missing_imports = true
|
|
# Modules that have been fully type-annotated. Add modules here as they are
|
|
# migrated to enable strict type checking for them.
|
|
files = [
|
|
"ironicclient/common/i18n.py",
|
|
"ironicclient/common/filecache.py",
|
|
"ironicclient/common/apiclient/exceptions.py",
|
|
"ironicclient/common/apiclient/base.py",
|
|
] |