Merge pull request #832 from xmatthias/contrib_document

update contributing document to include mypy
This commit is contained in:
Janne Sinivirta 2018-06-03 17:43:59 +03:00 committed by GitHub
commit b6754601ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,4 +42,16 @@ pip3.6 install flake8 coveralls
flake8 freqtrade
```
## 3. Test if all type-hints are correct
**Install packages** (If not already installed)
``` bash
pip3.6 install mypy
```
**Run mypy**
``` bash
mypy freqtrade
```