Adjust mypy and flake commands

This commit is contained in:
hroff-1902 2020-02-10 05:52:07 +03:00 committed by GitHub
parent 0ba8d13de9
commit 4af25ec315
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ pytest tests/test_<file_name>.py::test_<method_name>
#### Run Flake8 #### Run Flake8
```bash ```bash
flake8 freqtrade flake8 freqtrade tests
``` ```
We receive a lot of code that fails the `flake8` checks. We receive a lot of code that fails the `flake8` checks.
@ -61,7 +61,7 @@ Guide for installing them is [here](http://flake8.pycqa.org/en/latest/user/using
#### Run mypy #### Run mypy
``` bash ``` bash
mypy freqtrade mypy freqtrade tests
``` ```
## (Core)-Committer Guide ## (Core)-Committer Guide