From 98c53151adaf91f3ae0508528b253d4684cc3c29 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Thu, 15 Dec 2022 09:55:50 -0800 Subject: [PATCH] Correct type for texture_paths --- manimlib/mobject/mobject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manimlib/mobject/mobject.py b/manimlib/mobject/mobject.py index 4d089481..71f17f57 100644 --- a/manimlib/mobject/mobject.py +++ b/manimlib/mobject/mobject.py @@ -83,7 +83,7 @@ class Mobject(object): # Makes parts bright where light gets reflected toward the camera gloss: float = 0.0, # For shaders - texture_paths: str | Sequence[str] | None = None, + texture_paths: dict[str, str] | None = None, # If true, the mobject will not get rotated according to camera position is_fixed_in_frame: bool = False, **kwargs