Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 482 Bytes

File metadata and controls

19 lines (11 loc) · 482 Bytes

Using Flake8 (Linting)

To check Python code for compliance with all style standards, you can use the automatic checking tool flake8. Flake8 checks code according to configuration file .flake8.

  1. Install all requirements for flake8 package:
pip3 install .[lint]
  1. Run flake8 package:
flake8 .