mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
* Add error_console, output correct exit status * Try to start Github Actions * Fix spelling and isort * Use python_version fixture
8 lines
162 B
Python
8 lines
162 B
Python
from manim import *
|
|
|
|
# This module is intended to raise an error.
|
|
|
|
|
|
class Error(Scene):
|
|
def construct(self):
|
|
raise Exception("An error has occurred")
|