1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

Import iscoroutinefunction() from inspect rather than asyncio

The asyncio function is deprecated starting from Python 3.14 and
will be removed from Python 3.16.
This commit is contained in:
Karolina Surma
2025-02-05 16:57:16 +01:00
committed by Jair Henrique
parent 8217a4c21b
commit 558c7fc625

View File

@@ -3,7 +3,7 @@ import contextlib
import copy
import inspect
import logging
from asyncio import iscoroutinefunction
from inspect import iscoroutinefunction
import wrapt