Files
python-ironicclient/pyproject.toml
Karan Anand b507680903 Add type annotations to ironicclient/common/base.py
Changes:
Add type annotations following code conventions.
Added file to the migrated files list.

Change-Id: I6ffd3e1b997a5e38b062abd944e79e330d47d61c
Signed-off-by: Karan Anand <anandkarancompsci@gmail.com>
2026-02-28 19:39:58 -05:00

18 lines
553 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",
]