Fix typo: PEP-9 -> PEP-8
dblume

dblume commited on 2025-03-26 18:32:52
Showing 1 changed files, with 4 additions and 7 deletions.


Also a couple of style changes from pycodestyle.
... ...
@@ -1,9 +1,6 @@
1 1
 # testpython
2 2
 
3
-This is just a test project. You can do anything here, test python
4
-and IDE projects.
5
-
6
-This branch is of Python 3 code. There's a python2 branch too.
3
+This is just a sample Python project. It's for snippets and experimentation.
7 4
 
8 5
 ## Getting the project
9 6
 
... ...
@@ -18,7 +15,7 @@ You can clone from the origin with:
18 15
 
19 16
 ## Supported IDEs
20 17
 
21
-This project has example Visual Studio Code, PyCharm, Atom, and
18
+This project has example Visual Studio Code, PyCharm, and
22 19
 Sublime Text 3 projects.
23 20
 
24 21
 ### tmux vim entr
... ...
@@ -48,7 +45,7 @@ See [this QuickFix tip for sorting results by filename](https://git.dlma.com/dot
48 45
 Download Microsoft's Visual Studio Code from
49 46
 [code.visualstudio.com](https://code.visualstudio.com/). Code uses the
50 47
 [testpython.code-workspace](/testpython.git/blob/main/testpython.code-workspace)
51
-project file. I prefer this to GitHub's Atom. Both are based on GitHub's Electron.
48
+project file.
52 49
 
53 50
 ### PyCharm
54 51
 
... ...
@@ -62,7 +59,7 @@ except for workspace.xml and tasks.xml](https://intellij-support.jetbrains.com/h
62 59
 
63 60
 ## Style
64 61
 
65
-If you want your style similar to PEP-9, you can check the style of your code 
62
+If you want your style similar to PEP-8, you can check the style of your code 
66 63
 with ''pycodestyle'':
67 64
 
68 65
     pycodestyle --first --show-source --ignore=E501,W503 *.py
69 66