Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 550 Bytes

CONTRIBUTING.md

File metadata and controls

22 lines (15 loc) · 550 Bytes

Contributing to the Project

How to Contribute

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Make your changes.
  4. Commit your changes (git commit -am 'Add new feature').
  5. Push to the branch (git push origin feature-branch).
  6. Create a new Pull Request.

Code Style

  • Follow PEP 8 for Python code.
  • Write meaningful commit messages.
  • Include comments and documentation where necessary.

Testing

  • Add tests for your changes.
  • Ensure all tests pass before submitting a pull request.