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 8cd7035 commit 081b931Copy full SHA for 081b931
invokeai/app/invocations/util.py
@@ -11,4 +11,4 @@ def validate_weights(weights: Union[float, list[float]]) -> None:
11
def validate_begin_end_step(begin_step_percent: float, end_step_percent: float) -> None:
12
"""Validate that begin_step_percent is less than or equal to end_step_percent"""
13
if begin_step_percent > end_step_percent:
14
- raise ValueError(f"Begin step percent must be less than or equal to end step percent")
+ raise ValueError("Begin step percent must be less than or equal to end step percent")
0 commit comments