mirror of
https://github.com/jeertmans/manim-slides.git
synced 2025-05-24 05:57:14 +08:00
chore(ci): add more style checks (#32)
* chore(ci): add more style checks * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * chore(ci): remove vulture as flake8 replaces it * chore(lib): add __all__ list * chore(ci): make flake8 happy and remove mypy * fix: config_path is actually used in commons Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
@ -1,4 +1,3 @@
|
||||
import json
|
||||
import os
|
||||
import platform
|
||||
import shutil
|
||||
@ -39,7 +38,7 @@ class Slide(Scene):
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
self.output_folder = output_folder
|
||||
self.slides = list()
|
||||
self.slides = []
|
||||
self.current_slide = 1
|
||||
self.current_animation = 0
|
||||
self.loop_start_animation = None
|
||||
@ -143,7 +142,7 @@ class Slide(Scene):
|
||||
else:
|
||||
old_animation_files.update(os.listdir(scene_files_folder))
|
||||
|
||||
files = list()
|
||||
files = []
|
||||
for src_file in tqdm(
|
||||
self.partial_movie_files,
|
||||
desc=f"Copying animation files to '{scene_files_folder}' and generating reversed animations",
|
||||
|
Reference in New Issue
Block a user