Skip to content

Commit a19d647

Browse files
committed
style(cli): remove trailing slashes from CLI examples
1 parent 79f4076 commit a19d647

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/mflux/models/z_image/cli/z_image_i2l.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""CLI entrypoint for Z-Image Image-to-LoRA (i2L).
22
33
Usage:
4-
mflux-z-image-i2l --image-path ./style_images/ --output style_lora.safetensors
4+
mflux-z-image-i2l --image-path ./style_images --output style_lora.safetensors
55
mflux-z-image-i2l --image-path img1.jpg img2.jpg --output style_lora.safetensors
66
"""
77

@@ -42,10 +42,10 @@ def main():
4242
formatter_class=argparse.RawDescriptionHelpFormatter,
4343
epilog="""
4444
Examples:
45-
mflux-z-image-i2l --image-path ./my_style/
46-
mflux-z-image-i2l --image-path ./my_style/ --output my_style.safetensors
45+
mflux-z-image-i2l --image-path ./my_style
46+
mflux-z-image-i2l --image-path ./my_style --output my_style.safetensors
4747
mflux-z-image-i2l --image-path img1.jpg img2.jpg img3.jpg img4.jpg
48-
mflux-z-image-i2l --image-path ./style_a/ ./style_b/photo.png
48+
mflux-z-image-i2l --image-path ./style_a ./style_b/photo.png
4949
5050
The generated LoRA can then be used with mflux-generate-z-image-turbo:
5151
mflux-generate-z-image-turbo --prompt "a cat" --lora-paths style.safetensors

0 commit comments

Comments
 (0)