From dd089b1b21cc14f618aa7d9395aea7b54955bbba Mon Sep 17 00:00:00 2001 From: Yeuoly Date: Thu, 30 Oct 2025 16:10:54 +0800 Subject: [PATCH] fix: coding style --- api/agent_skills/coding_style.md | 1 - 1 file changed, 1 deletion(-) diff --git a/api/agent_skills/coding_style.md b/api/agent_skills/coding_style.md index 26be5990aa..c2f161fa22 100644 --- a/api/agent_skills/coding_style.md +++ b/api/agent_skills/coding_style.md @@ -19,7 +19,6 @@ - Prefer simple functions over classes for lightweight helpers. - Keep files below 800 lines; split when necessary. - Keep code readable—no clever hacks. -- Never use type annotations. - Never use `print`; log with `logger = logging.getLogger(__name__)`. ## Guiding Principles