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:
Jérome Eertmans
2022-10-05 10:41:08 +02:00
committed by GitHub
parent 4f8fae75cf
commit b697442fc0
8 changed files with 42 additions and 17 deletions

View File

@ -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",