Skip to content

Commit 31ba30c

Browse files
committed
more type annotation cleanups
1 parent 999e47e commit 31ba30c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

ffsubsync/ffsubsync.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,17 @@ def make_test_case(args: argparse.Namespace, npy_savename: Optional[str], sync_w
7676
return 0
7777

7878

79-
def get_srt_pipe_maker(args: argparse.Namespace, srtin: Optional[str]) -> Callable[[float], Pipeline]:
79+
def get_srt_pipe_maker(
80+
args: argparse.Namespace, srtin: Optional[str]
81+
) -> Callable[[Optional[float]], Union[Pipeline, Callable[[float], Pipeline]]]:
8082
if srtin is None:
8183
srtin_format = 'srt'
8284
else:
8385
srtin_format = os.path.splitext(srtin)[-1][1:]
8486
parser = make_subtitle_parser(fmt=srtin_format, caching=True, **args.__dict__)
85-
return lambda scale_factor: cast(Pipeline, make_subtitle_speech_pipeline(
87+
return lambda scale_factor: make_subtitle_speech_pipeline(
8688
**override(args, scale_factor=scale_factor, parser=parser)
87-
))
89+
)
8890

8991

9092
def get_framerate_ratios_to_try(args: argparse.Namespace) -> List[Optional[float]]:
@@ -99,7 +101,7 @@ def get_framerate_ratios_to_try(args: argparse.Namespace) -> List[Optional[float
99101
return framerate_ratios
100102

101103

102-
def try_sync(args: argparse.Namespace, reference_pipe, result) -> bool:
104+
def try_sync(args: argparse.Namespace, reference_pipe: Pipeline, result: Dict[str, Any]) -> bool:
103105
sync_was_successful = True
104106
exc = None
105107
try:
@@ -118,16 +120,14 @@ def try_sync(args: argparse.Namespace, reference_pipe, result) -> bool:
118120
else:
119121
srt_pipe.fit(srtin)
120122
if not args.skip_infer_framerate_ratio and hasattr(reference_pipe[-1], 'num_frames'):
121-
inferred_framerate_ratio_from_length = float(reference_pipe[-1].num_frames) / srt_pipes[0][-1].num_frames
123+
inferred_framerate_ratio_from_length = float(reference_pipe[-1].num_frames) / cast(Pipeline, srt_pipes[0])[-1].num_frames
122124
logger.info('inferred frameratio ratio: %.3f' % inferred_framerate_ratio_from_length)
123-
srt_pipes.append(srt_pipe_maker(inferred_framerate_ratio_from_length).fit(srtin))
125+
srt_pipes.append(cast(Pipeline, srt_pipe_maker(inferred_framerate_ratio_from_length)).fit(srtin))
124126
logger.info('...done')
125127
logger.info('computing alignments...')
126128
if args.skip_sync:
127129
best_score = 0.
128-
best_srt_pipe = srt_pipes[0]
129-
if callable(best_srt_pipe):
130-
best_srt_pipe = best_srt_pipe(1.0).fit(srtin)
130+
best_srt_pipe = cast(Pipeline, srt_pipes[0])
131131
offset_samples = 0
132132
else:
133133
(best_score, offset_samples), best_srt_pipe = MaxScoreAligner(

0 commit comments

Comments
 (0)