Skip to content

Commit 4a38106

Browse files
committed
fix: Sort scene list alphabetically in 'convert' command
1 parent 40ed77b commit 4a38106

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manim_slides/present/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def _list_scenes(folder: Path) -> list[str]:
3939

4040
logger.debug(f"Found {len(scenes)} valid scene configuration files in `{folder}`.")
4141

42-
return scenes
42+
return sorted(scenes)
4343

4444

4545
def prompt_for_scenes(folder: Path) -> list[str]:

0 commit comments

Comments
 (0)