We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 972cf50 commit 6e453d2Copy full SHA for 6e453d2
README.md
@@ -76,11 +76,11 @@ $ python manage.py cov
76
Run flake8 on the app:
77
78
```sh
79
-$ python manage.py flake
+$ python manage.py flake project
80
```
81
82
or
83
84
85
-$ flake8 .
+$ flake8 project
86
{{cookiecutter.app_slug}}/manage.py
@@ -87,7 +87,7 @@ def cov():
87
@cli.command()
88
def flake():
89
"""Runs flake8 on the project."""
90
- subprocess.run(['flake8', '.'])
+ subprocess.run(['flake8', 'project'])
91
92
93
if __name__ == '__main__':
0 commit comments