We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f05117 commit b22a7fbCopy full SHA for b22a7fb
returns/primitives/reawaitable.py
@@ -5,7 +5,7 @@
5
# Try to use anyio.Lock, fall back to asyncio.Lock
6
try:
7
import anyio # noqa: WPS433
8
-except ImportError:
+except ImportError: # pragma: no cover
9
import asyncio # noqa: WPS433
10
11
Lock = asyncio.Lock
0 commit comments