Skip to content

Commit

Permalink
STY: make mypy ignore import errors
Browse files Browse the repository at this point in the history
  • Loading branch information
exiledkingcc committed Jul 22, 2023
1 parent b4d2d88 commit 1107ca0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pypdf/_crypt_providers/_cryptography.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@

import secrets

from cryptography.hazmat.primitives import padding
from cryptography.hazmat.primitives.ciphers.algorithms import AES, ARC4
from cryptography.hazmat.primitives.ciphers.base import Cipher
from cryptography.hazmat.primitives.ciphers.modes import CBC, ECB
from cryptography.hazmat.primitives import padding # type: ignore[import]
from cryptography.hazmat.primitives.ciphers.algorithms import AES, ARC4 # type: ignore[import]
from cryptography.hazmat.primitives.ciphers.base import Cipher # type: ignore[import]
from cryptography.hazmat.primitives.ciphers.modes import CBC, ECB # type: ignore[import]

from pypdf._crypt_providers._base import CryptBase

Expand Down

0 comments on commit 1107ca0

Please sign in to comment.