We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92c7bac commit 3e52718Copy full SHA for 3e52718
lightx2v/utils/utils.py
@@ -623,7 +623,8 @@ def validate_task_arguments(args: "argparse.Namespace") -> None:
623
path_value = getattr(args, path_arg, "")
624
625
# Check if path is provided
626
- if not path_value: raise ValueError(f"{requirements['description']}: --{path_arg} cannot be empty")
+ if not path_value:
627
+ raise ValueError(f"{requirements['description']}: --{path_arg} cannot be empty")
628
629
# For comma-separated paths (like i2i with multiple images)
630
if "," in path_value:
0 commit comments