From 20fe3b8abf49f8f7d73ad0f5610d2a62541fd907 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 3 Feb 2022 22:32:57 -0800 Subject: [PATCH] Fixed RST warning about empty line --- docs/cli-reference.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/cli-reference.rst b/docs/cli-reference.rst index 89318d7..15b7b8c 100644 --- a/docs/cli-reference.rst +++ b/docs/cli-reference.rst @@ -56,6 +56,7 @@ This page lists the ``--help`` for every ``sqlite-utils`` CLI sub-command. "convert": "cli_convert", } commands.sort(key = lambda command: go_first.index(command) if command in go_first else 999) + cog.out("\n") for command in commands: cog.out(command + "\n") cog.out(("=" * len(command)) + "\n\n") @@ -74,6 +75,7 @@ This page lists the ``--help`` for every ``sqlite-utils`` CLI sub-command. cog.out(textwrap.indent(output, ' ')) cog.out("\n\n") .. ]]] + query =====