summaryrefslogtreecommitdiff
path: root/tests/test_image_access.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_image_access.py')
-rw-r--r--tests/test_image_access.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/tests/test_image_access.py b/tests/test_image_access.py
index 6be46a4..30a055e 100644
--- a/tests/test_image_access.py
+++ b/tests/test_image_access.py
@@ -1,21 +1,20 @@
-import pytest
import imghdr
-from io import BytesIO
-from PIL import Image, features as PIL_features
import zlib
+from io import BytesIO
-# pylint: disable=w0621
-
+import pytest
+from PIL import Image
+from PIL import features as PIL_features
from pikepdf import (
+ Name,
Pdf,
- PdfImage,
PdfError,
- Name,
- parse_content_stream,
+ PdfImage,
PdfInlineImage,
Stream,
StreamDecodeLevel,
+ parse_content_stream,
)