From 03ade1ba9a145848cc7c9ef8a46fbba12fb389c7 Mon Sep 17 00:00:00 2001 From: Freddy Heppell Date: Thu, 11 Jul 2024 15:56:16 +0100 Subject: [PATCH] Ruff --- src/wpextract/cli/_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wpextract/cli/_cli.py b/src/wpextract/cli/_cli.py index eeb0109..3e594d0 100644 --- a/src/wpextract/cli/_cli.py +++ b/src/wpextract/cli/_cli.py @@ -12,10 +12,10 @@ @click.group(context_settings=dict(help_option_names=["-h", "--help"]), **CMD_ARGS) @click.version_option( package_name="wpextract", - message=f"%(prog)s, version %(version)s (Python {PYTHON_VERSION})" + message=f"%(prog)s, version %(version)s (Python {PYTHON_VERSION})", ) def cli(): - """Wpextract is a tool to create datasets from WordPress sites.""" + """WPextract is a tool to create datasets from WordPress sites.""" cli.add_command(download)