Skip to content

Commit e37edf5

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## A GitHub Action that finds Python syntax errors and undefined names in your repo
1+
## A GitHub Action that finds Python 3 syntax errors and undefined names in your repo
22
An action that runs selected [flake8](http://flake8.pycqa.org) tests on the Python code in your repo.
33
If ___syntax errors or undefined names___ are found in the Python code then the Action will fail.
44

@@ -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 Python 3 syntax errors and undefined names?
16+
## How does this Action find 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)