---
description: Python code style guidelines
globs: **/*.py
---
# Python Code Style

- Follow PEP 8 style guidelines
- Use 4 spaces for indentation
- Maximum line length: 100 characters
- Use descriptive variable and function names
- Add docstrings for classes and functions
- Prefer f-strings for string formatting
- Keep functions focused and single-purpose
