Changes: Add type annotations following code conventions. Added file to the migrated files list. Change-Id: Ib1a69cb63c2d6896009997b79197b0711593f187 Signed-off-by: Karan Anand <anandkarancompsci@gmail.com>
19 lines
580 B
TOML
19 lines
580 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",
|
|
"ironicclient/common/base.py",
|
|
"ironicclient/exc.py",
|
|
] |