style: Format all Python files with ruff

- Formatted 103 files to comply with ruff format requirements
- No code logic changes, only formatting/whitespace
- Fixes CI formatting check failures
This commit is contained in:
yusyus
2026-02-08 14:42:27 +03:00
parent 6e4f623b9d
commit 0265de5816
103 changed files with 2241 additions and 2627 deletions

View File

@@ -175,8 +175,7 @@ class LocalSkillEnhancer:
dangerous_chars = [";", "&", "|", "$", "`", "\n", "\r"]
if any(char in cmd_template for char in dangerous_chars):
raise ValueError(
"Custom command contains dangerous shell characters. "
f"Command: {cmd_template}"
f"Custom command contains dangerous shell characters. Command: {cmd_template}"
)
try:
@@ -888,9 +887,7 @@ rm {prompt_file}
print("❌ SKILL.md not found after enhancement")
return False
else:
print(
f"{self.agent_display} returned error (exit code: {result.returncode})"
)
print(f"{self.agent_display} returned error (exit code: {result.returncode})")
if result.stderr:
print(f" Error: {result.stderr[:200]}")
return False