Fixed issues reported by agents

This commit is contained in:
Renn F
2025-12-24 04:23:16 +01:00
parent 06720b1978
commit afde0d5441
16 changed files with 277 additions and 94 deletions
+2 -6
View File
@@ -133,13 +133,9 @@ select = [
"RUF", # Ruff-specific
]
# MCP servers: Tool functions require explicit parameters for schema generation.
# PLC0415 - Lazy imports for circular import avoidance
#
# Services: Internal methods often need multiple related parameters for DB ops.
# PLC0415 - Lazy imports for circular import avoidance
# Lazy imports to avoid circular dependencies
[tool.ruff.lint.per-file-ignores]
"roboco/mcp/*.py" = ["PLC0415"]
"roboco/mcp/**/*.py" = ["PLC0415"]
"roboco/services/*.py" = ["PLC0415"]
# =============================================================================