Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Oct 29, 2022
1 parent 00b25fd commit 799a6a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Tests/test_file_tiff.py
Expand Up @@ -868,11 +868,10 @@ def test_timeout(self):
def test_oom(self, test_file):
with pytest.raises(UnidentifiedImageError):
with pytest.warns(UserWarning):
with Image.open(test_file) as im:
with Image.open(test_file):
pass



@pytest.mark.skipif(not is_win32(), reason="Windows only")
class TestFileTiffW32:
def test_fd_leak(self, tmp_path):
Expand Down
4 changes: 3 additions & 1 deletion src/PIL/TiffImagePlugin.py
Expand Up @@ -1401,7 +1401,9 @@ def _setup(self):

if samples_per_pixel > MAX_SAMPLESPERPIXEL:
# DOS check, samples_per_pixel can be a Long, and we extend the tuple below
logger.error("More samples per pixel than can be decoded: %s", samples_per_pixel)
logger.error(
"More samples per pixel than can be decoded: %s", samples_per_pixel
)
raise SyntaxError("Invalid value for samples per pixel")

if samples_per_pixel < bps_actual_count:
Expand Down

0 comments on commit 799a6a0

Please sign in to comment.