Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 937 Bytes

CONTRIBUTING.md

File metadata and controls

33 lines (27 loc) · 937 Bytes

Clone the repo

Start by cloning the repo

git clone https://github.com/pranavbaburaj/polyglot.git

Requirements

  • Python - Download and install python from the official download page
  • PIP - PIP is the python package manager. Read more about it here

Install the requirements

pip install -r requirements.txt

Formatting the code

Once you have finished adding the changes, make sure to format your code with formatter. It is recommended to use black

<#
Install the black code formatter
using pip
#>
pip install black

<#
Format the code using black
#>
black .

Create a pull request

You can read more about pull requests here