Bad Python

Python code style enforcement

Anyesh a6a6ed2 357 B Updated

File contents

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

Anyesh/skillprobe/tree/main/examples/skills/bad-python commit a6a6ed200e

Frequently asked questions

npx skillmds@latest add anyesh/bad-python