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 779426a commit 3354b0bCopy full SHA for 3354b0b
manim_slides/slide/base.py
@@ -341,8 +341,10 @@ def construct(self):
341
self._pending_subsection_markers.append(marker)
342
343
# Call Manim's next_section to create separate video files
344
- if hasattr(self, 'next_section'):
345
- self.next_section(name=name or f"subsection_{len(self._pending_subsection_markers)}")
+ if hasattr(self, "next_section"):
+ self.next_section(
346
+ name=name or f"subsection_{len(self._pending_subsection_markers)}"
347
+ )
348
349
def _consume_subsection_markers(self) -> tuple[SubsectionMarker, ...]:
350
markers = tuple(self._pending_subsection_markers)
0 commit comments