Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds a --metadata-only option to pack #72

Merged
merged 18 commits into from
Jan 25, 2024
Prev Previous commit
Next Next commit
wrong valuerror test
glyg committed Jan 24, 2024
commit ccb1cad1f3cb9b8cc8f22299abc8d50d0d174f68
4 changes: 2 additions & 2 deletions src/omero_cli_transfer.py
Original file line number Diff line number Diff line change
@@ -414,8 +414,8 @@ def __pack(self, args):
raise ValueError("Single plate or screen cannot be "
"packaged in human-readable format")

if args.binaries == "all" and args.simple:
raise ValueError("The `--binaries all` and `--simple` options are "
if (args.binaries == "none") and args.simple:
raise ValueError("The `--binaries none` and `--simple` options are "
"incompatible")

if isinstance(args.object, Image):