Final typing error.

This commit is contained in:
Frédéric Tronel
2026-08-30 14:18:39 +02:00
parent 093ad733d3
commit 6f5dd3a9e4
+3 -1
View File
@@ -8,7 +8,7 @@ from os import unlink
from shutil import copyfile, move from shutil import copyfile, move
from sys import exit from sys import exit
import logging import logging
from typing import IO, Any from typing import IO, Any, BinaryIO
import hexdump import hexdump
@@ -98,6 +98,8 @@ def process_recording(options: ProcessingOptions) -> None:
if not found: if not found:
logger.error('Unsupported format of file') logger.error('Unsupported format of file')
mkv: BinaryIO
if final_format_of_file == SupportedFormat.TS: if final_format_of_file == SupportedFormat.TS:
logger.info("Converting TS to MP4 (to fix timestamps).") logger.info("Converting TS to MP4 (to fix timestamps).")
try: try: