Skip to content

Commit

Permalink
Fix formatting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
williamgagnonpoka committed Aug 2, 2024
1 parent 8ca9555 commit ee031d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pypdf/_xobj_image_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from ._utils import check_if_whitespace_only, logger_warning
from .constants import ColorSpaces
from .errors import PdfReadError, EmptyImageDataError
from .errors import EmptyImageDataError, PdfReadError
from .generic import (
ArrayObject,
DecodedStreamObject,
Expand Down
5 changes: 3 additions & 2 deletions tests/test_xobject_image_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
import pytest

from pypdf import PdfReader
from pypdf._xobj_image_helpers import _handle_flate, _extended_image_frombytes
from pypdf.errors import PdfReadError, EmptyImageDataError
from pypdf._xobj_image_helpers import _extended_image_frombytes, _handle_flate
from pypdf.errors import EmptyImageDataError, PdfReadError
from pypdf.generic import ArrayObject, DecodedStreamObject, NameObject, NumberObject

from . import get_data_from_url


Expand Down

0 comments on commit ee031d8

Please sign in to comment.