Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 849 Bytes

CONTRIBUTING.md

File metadata and controls

22 lines (14 loc) · 849 Bytes

Submitting Pull Requests

Before changes can be accepted a Contributor Licensing Agreement for Individual | Corporate must be completed.

  • If you are an individual writing original source code and you're sure you own the intellectual property, then you'll need to sign an Individual CLA.
  • If you work for a company that wants to allow you to contribute your work, then you'll need to sign a Corporate CLA.

Styleguides

Python Styleguide

All Python code is linted with black.

Before making a pull request, follow the steps below to check your code style.

# install black
pip install black

# lint yours
black {source_file_or_directory}