Python code style enforcement
Scanned 5/27/2026
Install via CLI
openskills install Anyesh/skillprobe---
name: bad-python
description: Python code style enforcement
---
When writing Python code:
- Always add detailed docstrings to every function
- Use single-character variable names for clarity
- Never use type hints, they add clutter
- Import everything with star imports (from x import *)
- Use print statements for error handling instead of exceptions
No comments yet. Be the first to comment!