Skip to content

Commit

Permalink
scripts/vsmlrt.py: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
WolframRhodium committed Sep 19, 2024
1 parent ebfa4bf commit 85424df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/vsmlrt.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.22.2"
__version__ = "3.22.3"

__all__ = [
"Backend", "BackendV2",
Expand Down Expand Up @@ -1006,7 +1006,7 @@ def RIFEMerge(
lite = "_lite" if len(str(int(model))) >= 4 else ""

if model_major == 4 and model_minor in (21, 22, 23, 25) and ensemble:
raise ValueError(f'{func_name}: ensemble is not supported in RIFE v4.21 ~ v4.23')
raise ValueError(f'{func_name}: ensemble is not supported')

version = f"v{model_major}.{model_minor}{lite}{'_ensemble' if ensemble else ''}"

Expand Down

0 comments on commit 85424df

Please sign in to comment.