-
Notifications
You must be signed in to change notification settings - Fork 46
Description
When running the following command python3 -m flake8 ./ we get some flake8 warnings such as
Unused Imports (F401), Import Errors (E402), Indentation Issues (E101, W191), Line Length Violations (E501), Naming and Variable Issues (F821), Syntax and Logical Issues (E703, E722, E712) etc.
This is the list of all the warnings flake8.txt
What is Flake8?
Flake8 is a Python tool that checks for style guide violations, potential errors, and code complexity issues. It enforces PEP 8 (Python's style guide) and helps maintain clean and readable code.
Correcting these warnings makes the code easier to read and maintain. Fixing indentation and syntax issues can prevent unexpected runtime errors following Flake8 rules ensures uniform coding standards across the project.
Clean code would help new contributors understand the project more easily.
should we consider correcting this in upcoming version?