X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/b50a52708c564a9ded05b579e39eadbb928050a3..bb767863b0cc51897f9cd94da84b8b01f3936607:/src/black_primer/cli.py diff --git a/src/black_primer/cli.py b/src/black_primer/cli.py index 010ea6c..83357a9 100644 --- a/src/black_primer/cli.py +++ b/src/black_primer/cli.py @@ -50,7 +50,7 @@ async def async_main( work_path.mkdir() if not which("black"): - LOG.error(f"Can not find 'black' executable in PATH. No point in running") + LOG.error("Can not find 'black' executable in PATH. No point in running") return -1 try: @@ -63,7 +63,7 @@ async def async_main( LOG.debug(f"Removing {work_path}") rmtree(work_path) - return -1 + return -2 @click.command(context_settings={"help_option_names": ["-h", "--help"]}) @@ -131,5 +131,5 @@ def main(ctx: click.core.Context, **kwargs: Any) -> None: loop.close() -if __name__ == "__main__": +if __name__ == "__main__": # pragma: nocover main()