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 b7a8a2d commit 5d73525Copy full SHA for 5d73525
manim/utils/docbuild/manim_directive.py
@@ -343,6 +343,9 @@ def _log_rendering_times(*args):
343
344
print("\nRendering Summary\n-----------------\n")
345
346
+ # filter out empty lists caused by csv reader
347
+ data = [row for row in data if row]
348
+
349
max_file_length = max(len(row[0]) for row in data)
350
for key, group in it.groupby(data, key=lambda row: row[0]):
351
key = key.ljust(max_file_length + 1, ".")
0 commit comments