Skip to content

Commit

Permalink
remote: silently ignore sslpsk import errors
Browse files Browse the repository at this point in the history
  • Loading branch information
doronz88 committed Jan 26, 2024
1 parent 9227411 commit b159609
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pymobiledevice3/remote/core_device_tunnel_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@
from qh3.quic.events import ConnectionTerminated, DatagramFrameReceived, QuicEvent, StreamDataReceived
from srptools import SRPClientSession, SRPContext
from srptools.constants import PRIME_3072, PRIME_3072_GEN
from sslpsk_pmd3.sslpsk import SSLPSKContext

try:
from sslpsk_pmd3.sslpsk import SSLPSKContext
except ImportError:
SSLPSKContext = None

from pymobiledevice3.ca import make_cert
from pymobiledevice3.exceptions import PyMobileDevice3Exception, UserDeniedPairingError
Expand Down

0 comments on commit b159609

Please sign in to comment.