Closed Ichunjo closed 3 years ago
The documentation says we can use a function of the form func(current_frame, total_frames) to to progress_update.
func(current_frame, total_frames)
https://github.com/vapoursynth/vsrepo/blob/49a39b4ec03cc44101c3b83932e44db266d68014/vsgenstubs/_vapoursynth.part.pyi#L382
Shouldn't typing be something like that:
progress_update: typing.Optional[typing.Callable[[int, int]]]=None
Definitely look wrong, will take a look
Probably fixed now
The documentation says we can use a function of the form
func(current_frame, total_frames)
to to progress_update.https://github.com/vapoursynth/vsrepo/blob/49a39b4ec03cc44101c3b83932e44db266d68014/vsgenstubs/_vapoursynth.part.pyi#L382
Shouldn't typing be something like that: