We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b150976 commit dc80c1bCopy full SHA for dc80c1b
README.md
@@ -9,13 +9,13 @@ python -m venv env
9
./env/bin/pip install -r requirements.txt
10
```
11
12
-## Userful commands
+## Useful commands
13
14
```sh
15
# Use the hooks folder to run pre-commit lint and test
16
git config core.hooksPath hooks
17
-./env/bin/pycodestyle katas # Run lint
18
-./env/bin/python -m unittest -f katas/*.py # Run tests
19
-
20
+# Runing lint
+./env/bin/pycodestyle katas
+# Running tests
+./env/bin/python -m unittest -f katas/*.py
21
0 commit comments