Skip to content

Commit 3354b0b

Browse files
chore(fmt): auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 779426a commit 3354b0b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

manim_slides/slide/base.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,10 @@ def construct(self):
341341
self._pending_subsection_markers.append(marker)
342342

343343
# 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)}")
344+
if hasattr(self, "next_section"):
345+
self.next_section(
346+
name=name or f"subsection_{len(self._pending_subsection_markers)}"
347+
)
346348

347349
def _consume_subsection_markers(self) -> tuple[SubsectionMarker, ...]:
348350
markers = tuple(self._pending_subsection_markers)

0 commit comments

Comments
 (0)