From bb013270af0cccd7afc53a9105886b6e8d7f2579 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Mon, 31 Aug 2020 18:46:42 +1000 Subject: [PATCH] Removed trailing comma --- Tests/test_file_libtiff.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Tests/test_file_libtiff.py b/Tests/test_file_libtiff.py index 706488f87..2d89bd79e 100644 --- a/Tests/test_file_libtiff.py +++ b/Tests/test_file_libtiff.py @@ -768,12 +768,7 @@ class TestFileLibTiff(LibTiffTestCase): assert im.mode == "RGBA" assert im.size == (100, 40) assert im.tile, [ - ( - "libtiff", - (0, 0, 100, 40), - 0, - ("RGBa;16N", "tiff_lzw", False, 38236), - ) + ("libtiff", (0, 0, 100, 40), 0, ("RGBa;16N", "tiff_lzw", False, 38236)) ] im.load()