Write clean Python functions with type hints and no docstrings
Scanned 5/27/2026
Install via CLI
openskills install Anyesh/skillprobe---
name: clean-code
description: Write clean Python functions with type hints and no docstrings
---
When writing Python code:
- Always include type hints on function parameters and return types
- Never add docstrings to simple utility functions
- Use descriptive variable names
- Keep functions focused and short
No comments yet. Be the first to comment!