From a7e272a2586381f6bb56c31152fa038db5a6119b Mon Sep 17 00:00:00 2001 From: gx10 Date: Thu, 19 Feb 2026 14:37:28 +0100 Subject: [PATCH] fix: escape % character in argparse help string --- packages/ltx-pipelines/src/ltx_pipelines/utils/args.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ltx-pipelines/src/ltx_pipelines/utils/args.py b/packages/ltx-pipelines/src/ltx_pipelines/utils/args.py index 15b3d490..1d4c2687 100644 --- a/packages/ltx-pipelines/src/ltx_pipelines/utils/args.py +++ b/packages/ltx-pipelines/src/ltx_pipelines/utils/args.py @@ -295,7 +295,7 @@ def default_1_stage_arg_parser() -> argparse.ArgumentParser: default=DEFAULT_VIDEO_GUIDER_PARAMS.skip_step, help=( "Video skip step N controls periodic skipping during the video diffusion process: " - "only steps where step_index % (N + 1) == 0 are processed, all others are skipped " + "only steps where step_index %% (N + 1) == 0 are processed, all others are skipped " f"(e.g., 0 = no skipping; 1 = skip every other step; 2 = skip 2 of every 3 steps; " f"default: {DEFAULT_VIDEO_GUIDER_PARAMS.skip_step})." ), @@ -355,7 +355,7 @@ def default_1_stage_arg_parser() -> argparse.ArgumentParser: default=DEFAULT_AUDIO_GUIDER_PARAMS.skip_step, help=( "Audio skip step N controls periodic skipping during the audio diffusion process: " - "only steps where step_index % (N + 1) == 0 are processed, all others are skipped " + "only steps where step_index %% (N + 1) == 0 are processed, all others are skipped " f"(e.g., 0 = no skipping; 1 = skip every other step; 2 = skip 2 of every 3 steps; " f"default: {DEFAULT_AUDIO_GUIDER_PARAMS.skip_step})." ),