Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 511 Bytes

CONTRIBUTE.md

File metadata and controls

20 lines (11 loc) · 511 Bytes

Contributions are welcome!

To submit a patch, check the following:

  1. Make sure your Python code follows PEP 8.

You can check with the following command:

flake8 --filename '*' --ignore E501 copydeps

(We ignore E501, line length because the code contains output of commands)

  1. Make sure tests pass. You can run the test suite with:

    pytest

Then file a pull request against the master branch.