Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 737 Bytes

File metadata and controls

37 lines (27 loc) · 737 Bytes

Contributing

Thanks for your interest in contributing!

Issues

  • Search existing issues before creating a new one
  • Include steps to reproduce for bugs
  • Include Python version and environment info

Pull Requests

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/your-feature
  3. Make your changes
  4. Run tests: pytest
  5. Commit: git commit -m "Add your feature"
  6. Push: git push origin feature/your-feature
  7. Open a Pull Request

Code Style

  • Use Black for formatting
  • Use isort for imports
  • Type hints are encouraged
black src/
isort src/

Testing

pip install pytest pytest-asyncio
pytest