Files
OpenHands/dev_config/python/mypy.ini
openhands 0defdbf07d Fix remaining path references after directory reorganization
- Remove duplicate openhands-cli path from packages/cli/pyproject.toml
- Update CODEOWNERS to reference packages/ui instead of openhands-ui
- Update dev_config to exclude vendor/ instead of third_party/
2025-11-17 19:08:25 +00:00

17 lines
422 B
INI

[mypy]
warn_unused_configs = True
ignore_missing_imports = True
check_untyped_defs = True
explicit_package_bases = True
warn_unreachable = True
warn_redundant_casts = True
no_implicit_optional = True
strict_optional = True
disable_error_code = type-abstract
# Exclude third-party runtime directory from type checking
exclude = (vendor/|enterprise/)
[mypy-openhands.memory.condenser.impl.*]
disable_error_code = override