Files
python-ironicclient/pyproject.toml
Karan Anand 22bf8b21a4 Add type annotations to ironicclient/common/apiclient/base.py
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>
2026-02-22 23:06:25 -05:00

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",
]