7 lines
77 B
Python
7 lines
77 B
Python
|
from invoke import task
|
||
|
|
||
|
|
||
|
@task
|
||
|
def lint(ctx):
|
||
|
ctx.run("black *.py src")
|