Remove redundant brackets

This commit is contained in:
Roy Nieterau 2025-03-13 11:00:59 +01:00
parent 5540e7923a
commit 8424ad3907

View file

@ -560,10 +560,10 @@ def convert_input_paths_for_ffmpeg(
ext = os.path.splitext(first_input_path)[1].lower()
if ext != ".exr":
raise ValueError((
raise ValueError(
"Function 'convert_input_paths_for_ffmpeg' currently supports"
f" only \".exr\" extension. Got \"{ext}\"."
))
)
input_info = get_oiio_info_for_input(first_input_path, logger=logger)