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: