We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e7502 commit 6cb89a0Copy full SHA for 6cb89a0
manim/_config/utils.py
@@ -652,7 +652,12 @@ def digest_parser(self, parser: configparser.ConfigParser) -> Self:
652
setattr(self, "window_size", window_size)
653
654
# plugins
655
- self.plugins = parser["CLI"].get("plugins", fallback="", raw=True).split(",")
+ plugins = parser["CLI"].get("plugins", fallback="", raw=True)
656
+ if plugins == "":
657
+ plugins = []
658
+ else:
659
+ plugins = plugins.split(",")
660
+ self.plugins = plugins
661
# the next two must be set AFTER digesting pixel_width and pixel_height
662
self["frame_height"] = parser["CLI"].getfloat("frame_height", 8.0)
663
width = parser["CLI"].getfloat("frame_width", None)
0 commit comments