From c3745facf7ab23c504d24fa4d2f2e342d85668b3 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Fri, 8 Aug 2025 09:22:55 +0200 Subject: [PATCH] Fix typos --- empack/cli/pack.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/empack/cli/pack.py b/empack/cli/pack.py index e1194fc..f7c5dfd 100644 --- a/empack/cli/pack.py +++ b/empack/cli/pack.py @@ -23,7 +23,7 @@ name="env", help="""Pack an environment into a multiple tarballs: This will pack and exisiting enviroment into multiple tarballs -and a json file with a list of package filenmmes. +and a json file with a list of package filenames. """, ) def pack_env_cli( @@ -37,7 +37,7 @@ def pack_env_cli( "/", "--relocate-prefix", "-r", - help="path of the env in the the virtual filesystem", + help="path of the env in the virtual filesystem", ), config: list[Path] = typer.Option( # noqa: B008 [DEFAULT_CONFIG_PATH], @@ -91,7 +91,7 @@ def pack_dir_cli( ..., "--mount-dir", "-m", - help="path of the directory in the the virtual filesystem", + help="path of the directory in the virtual filesystem", ), outname: Path = typer.Option( # noqa: B008 ..., @@ -127,7 +127,7 @@ def pack_file_cli( ..., "--mount-dir", "-m", - help="path of the directory in the the virtual filesystem", + help="path of the directory in the virtual filesystem", ), outname: Path = typer.Option( # noqa: B008 ...,