From b4d87c709c305c83b18cbd8e8e1950270556bcfe Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Mon, 21 Jul 2025 20:17:41 -0400 Subject: [PATCH] chore: update `copilot-instructions.md` (#32159) --- .github/copilot-instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 7d60dcf243e..bc3e4ab06bc 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -25,7 +25,7 @@ def get_user(user_id: str, verbose: bool = False): # Maintains stable interface * Prefer descriptive, **self-explanatory variable names**. Avoid overly short or cryptic identifiers. * Break up overly long or deeply nested functions for **readability and maintainability**. * Avoid unnecessary abstraction or premature optimization. -* All generated Python code must include type hints. +* All generated Python code must include type hints and return types. Bad: