Skip to content

Commit 558c7fc

Browse files
befelemejairhenrique
authored andcommitted
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.
1 parent 8217a4c commit 558c7fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: vcr/cassette.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import copy
44
import inspect
55
import logging
6-
from asyncio import iscoroutinefunction
6+
from inspect import iscoroutinefunction
77

88
import wrapt
99

0 commit comments

Comments
 (0)