Skip to content

Commit

Permalink
spell separate correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
JLoveUOA committed Sep 11, 2024
1 parent a12545a commit 4bda425
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,11 @@ def abi(
help="replace default temporary file location",
)
@click.option(
"--seperate_manifests",
"--separate_manifests",
type=bool,
is_flag=True,
default=False,
help="generate a seperate copy of any file manifest before output",
help="generate a separate copy of any file manifest before output",
)
def print_lab( # pylint: disable=too-many-statements,too-many-branches
input_metadata: Path,
Expand All @@ -230,7 +230,7 @@ def print_lab( # pylint: disable=too-many-statements,too-many-branches
split_datasets: Optional[bool],
dry_run: Optional[bool],
tmp_dir: Optional[Path],
seperate_manifests: Optional[bool],
separate_manifests: Optional[bool],
) -> None:
"""
Create an RO-Crate based on a Print Lab metadata file
Expand Down Expand Up @@ -327,7 +327,7 @@ def print_lab( # pylint: disable=too-many-statements,too-many-branches
crate_destination,
crate_destination,
True,
seperate_manifests,
separate_manifests,
)
logger.info("Bulk Encrypting RO-Crate")
target = (
Expand All @@ -343,7 +343,7 @@ def print_lab( # pylint: disable=too-many-statements,too-many-branches
)
else:
archive_crate(
archive_type, final_output, crate_destination, True, seperate_manifests
archive_type, final_output, crate_destination, True, separate_manifests
)


Expand Down

0 comments on commit 4bda425

Please sign in to comment.