mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
Remove input_file_path arg from SceneFileWriter
This commit is contained in:
parent
859958794c
commit
e93f61bddc
2 changed files with 0 additions and 4 deletions
|
@ -273,7 +273,6 @@ def update_file_writer_config(config: dict, args: Namespace):
|
|||
movie_file_extension=(get_file_ext(args)),
|
||||
output_directory=get_output_directory(args, config),
|
||||
file_name=args.file_name,
|
||||
input_file_path=args.file or "",
|
||||
open_file_upon_completion=args.open,
|
||||
show_file_location_upon_completion=args.finder,
|
||||
quiet=args.quiet,
|
||||
|
|
|
@ -34,8 +34,6 @@ class SceneFileWriter(object):
|
|||
png_mode: str = "RGBA",
|
||||
save_last_frame: bool = False,
|
||||
movie_file_extension: str = ".mp4",
|
||||
# What python file is generating this scene
|
||||
input_file_path: str = "",
|
||||
# Where should this be written
|
||||
output_directory: str = ".",
|
||||
file_name: str | None = None,
|
||||
|
@ -57,7 +55,6 @@ class SceneFileWriter(object):
|
|||
self.png_mode = png_mode
|
||||
self.save_last_frame = save_last_frame
|
||||
self.movie_file_extension = movie_file_extension
|
||||
self.input_file_path = input_file_path
|
||||
self.output_directory = output_directory
|
||||
self.file_name = file_name
|
||||
self.open_file_upon_completion = open_file_upon_completion
|
||||
|
|
Loading…
Add table
Reference in a new issue