Guidelines
Code Standards
Python Style Guide
Follow PEP 8
Use type hints
Maximum line length: 88 characters (Black default)
Use docstrings for all public functions/classes
Example
Documentation
Update relevant documentation
Add docstrings to new code
Include examples for new features
Update changelog
Testing
Write unit tests for new features
Maintain or improve coverage
Include integration tests when needed
Git Workflow
Fork the repository
Create feature branch
Make changes
Run tests
Submit pull request
Pull Request Process
Update documentation
Add tests
Run linting and formatting
Update changelog
Request review
Last updated