From 19e35abbef8515414d66e572da0881a0f58e5607 Mon Sep 17 00:00:00 2001 From: Sahiru Wijesinghe <72490283+sahiruw@users.noreply.github.com> Date: Wed, 4 Feb 2026 02:24:26 +0530 Subject: [PATCH] Fix modulo operator in help text for skip step --- 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 2fa0163..9ceb01b 100644 --- a/packages/ltx-pipelines/src/ltx_pipelines/utils/args.py +++ b/packages/ltx-pipelines/src/ltx_pipelines/utils/args.py @@ -251,7 +251,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})." ), @@ -311,7 +311,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})." ),