Skip to content

Commit

Permalink
Handle import of trio raising NotImplementedError on unsupported …
Browse files Browse the repository at this point in the history
…platforms.

Closes #946
  • Loading branch information
tomchristie authored Sep 27, 2024
1 parent ba3f942 commit fecf9d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion httpcore/_synchronization.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

try:
import trio
except ImportError: # pragma: nocover
except (ImportError, NotImplementedError): # pragma: nocover
trio = None # type: ignore

try:
Expand Down

0 comments on commit fecf9d6

Please sign in to comment.