Fix invoke delint

pull/3/head
Drew Bednar 1 year ago
parent df128519c7
commit cb137d792d

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

Loading…
Cancel
Save