Skip to content

Commit aa7ab45

Browse files
authored
Update README.md
1 parent e37edf5 commit aa7ab45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ action "Find Python 3 syntax errors and undefined names" {
1313
uses = "cclauss/Find-Python-syntax-errors-action@master"
1414
}
1515
```
16-
## How does this Action find Python 3 syntax errors and undefined names?
16+
## Flake8 finds Python 3 syntax errors and undefined names
1717
$ __flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics__
1818

1919
__E901,E999,F821,F822,F823__ are the "_showstopper_" [flake8](http://flake8.pycqa.org) issues that can halt the runtime with a SyntaxError, NameError, etc. These 5 are different from most other flake8 issues which are merely "style violations" -- useful for readability but they do not effect runtime safety.

0 commit comments

Comments
 (0)