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/
This commit is contained in:
openhands 2025-11-17 19:08:25 +00:00
parent 49e1165d7f
commit 0defdbf07d
4 changed files with 3 additions and 4 deletions

2
.github/CODEOWNERS vendored
View File

@ -3,7 +3,7 @@
# Frontend code owners
/frontend/ @amanape
/openhands-ui/ @amanape
/packages/ui/ @amanape
# Evaluation code owners
/evaluation/ @xingyaoww @neubig

View File

@ -10,7 +10,7 @@ strict_optional = True
disable_error_code = type-abstract
# Exclude third-party runtime directory from type checking
exclude = (third_party/|enterprise/)
exclude = (vendor/|enterprise/)
[mypy-openhands.memory.condenser.impl.*]
disable_error_code = override

View File

@ -1,5 +1,5 @@
# Exclude third-party runtime directory from linting
exclude = ["third_party/", "enterprise/"]
exclude = ["vendor/", "enterprise/"]
[lint]
select = [

View File

@ -89,7 +89,6 @@ omit = [ "tests/*", "**/test_*" ]
[tool.coverage.paths]
source = [
"openhands_cli/",
"openhands-cli/openhands_cli/",
]
[tool.mypy]