Skip to content

Commit 6e453d2

Browse files
committed
updated flake8
1 parent 972cf50 commit 6e453d2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ $ python manage.py cov
7676
Run flake8 on the app:
7777

7878
```sh
79-
$ python manage.py flake
79+
$ python manage.py flake project
8080
```
8181

8282
or
8383

8484
```sh
85-
$ flake8 .
85+
$ flake8 project
8686
```

{{cookiecutter.app_slug}}/manage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def cov():
8787
@cli.command()
8888
def flake():
8989
"""Runs flake8 on the project."""
90-
subprocess.run(['flake8', '.'])
90+
subprocess.run(['flake8', 'project'])
9191

9292

9393
if __name__ == '__main__':

0 commit comments

Comments
 (0)