Marc Cataford
3b5c593444
* wip: functional version * refactor: indices, settings * refactor: minor * chore: extraneous $ * refactor: corpus, document model * wip: (dirty) split indexing in processes * wip: tidy up threaded indexing * wip: prefix tree * wip: rejig colors, logging * wip: (dirty) buffer instead of large socket msg * refactor: tidy * wip: (dirty) curses cli * wip: (dirty) more curses * test: cov * chore: package reorg
6 lines
77 B
Python
6 lines
77 B
Python
from invoke import task
|
|
|
|
|
|
@task
|
|
def lint(ctx):
|
|
ctx.run("black *.py src")
|