Skip to content
This repository was archived by the owner on Aug 8, 2023. It is now read-only.

Commit 8312f5e

Browse files
committed
Rename pep8 to pycodestyle
1 parent f5ad1a5 commit 8312f5e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

python/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ from . import mymodule
2828

2929
### PEP8 on the Command Line
3030

31-
Install the [`pep8`](https://pypi.python.org/pypi/pep8) package and run it on
32-
one or more directories or files:
31+
Install the [`pycodestyle`](https://github.com/PyCQA/pycodestyle) package and
32+
run it on one or more directories or files:
3333

3434
```bash
35-
pip install pep8
35+
pip install pycodestyle
3636

37-
pep8 portal/core/admin.py # Check a file
38-
pep8 portal/mailers # Check a folder
37+
pycodestyle portal/core/admin.py # Check a file
38+
pycodestyle portal/mailers # Check a folder
3939
```
4040

4141
### PEP8 in Editors
@@ -143,4 +143,4 @@ pyflakes portal/core # Check all the files in a tree
143143
Pyflakes has no configuration, and there is no way to suppress a warning by
144144
adding comments. However, it spots a smaller set of issues than PyLint (for
145145
example, it doesn't spot unused arguments). This does mean that anything it
146-
spots is worth checking.
146+
spots is worth checking.

0 commit comments

Comments
 (0)