mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Make checkpoint_states an instance variable of CheckpointManager
As per https://github.com/3b1b/manim/issues/2272
This commit is contained in:
parent
744e695340
commit
31e20bcb0b
1 changed files with 2 additions and 1 deletions
|
@ -157,7 +157,8 @@ class InteractiveSceneEmbed:
|
||||||
|
|
||||||
|
|
||||||
class CheckpointManager:
|
class CheckpointManager:
|
||||||
checkpoint_states: dict[str, list[tuple[Mobject, Mobject]]] = dict()
|
def __init__(self):
|
||||||
|
self.checkpoint_states: dict[str, list[tuple[Mobject, Mobject]]] = dict()
|
||||||
|
|
||||||
def checkpoint_paste(self, shell, scene):
|
def checkpoint_paste(self, shell, scene):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Reference in a new issue