manim/tests/test_scene_rendering/infallible_scenes.py
Darylgolden 6018ebf445 Revert "Merge branch 'main' of https://github.com/ManimCommunity/manim"
This reverts commit e7f9d23aa7, reversing
changes made to afe91d02b6.
2023-07-31 15:29:39 +08:00

13 lines
191 B
Python

from __future__ import annotations
from manim import *
class Wait1(Scene):
def construct(self):
self.wait()
class Wait2(Scene):
def construct(self):
self.wait(2)