diff --git a/{{cookiecutter.project_slug}}/tasks.py b/{{cookiecutter.project_slug}}/tasks.py index 1c13d42..e421b5b 100644 --- a/{{cookiecutter.project_slug}}/tasks.py +++ b/{{cookiecutter.project_slug}}/tasks.py @@ -23,8 +23,8 @@ def lint(c): @task def delint(c): """Applies automated linters to project""" - c.run("isort ./speech_collect ./tests ./tasks.py", pty=True) - c.run("black ./speech_collect ./tests ./tasks.py", pty=True) + c.run("isort ./{{ cookiecutter.project_slug }} ./tests ./tasks.py", pty=True) + c.run("black ./{{ cookiecutter.project_slug }} ./tests ./tasks.py", pty=True) @task