From 244f034a2edc7ad060bf84a8757ea4c3d4702805 Mon Sep 17 00:00:00 2001 From: Johannes Schauer Marin Rodrigues Date: Tue, 22 Mar 2022 17:57:12 +0100 Subject: [PATCH] src/img2pdf_test.py: format with black --- src/img2pdf_test.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/img2pdf_test.py b/src/img2pdf_test.py index 39cd0c4..80dd8e0 100755 --- a/src/img2pdf_test.py +++ b/src/img2pdf_test.py @@ -2211,13 +2211,7 @@ def gif_animation_img(tmp_path_factory, tmp_normal_png, tmp_inverse_png): ) # make sure all frames have the same palette by using -remap subprocess.check_call( - CONVERT - + [ - str(tmp_img), - "-strip", - "-remap", str(pal_img), - str(in_img) - ] + CONVERT + [str(tmp_img), "-strip", "-remap", str(pal_img), str(in_img)] ) pal_img.unlink() tmp_img.unlink()