Skip to content

Commit b4d7fa1

Browse files
authored
Merge pull request #51 from cclauss/patch-2
from inspect import iscoroutinefunction not asyncio
2 parents aca2863 + 9c64ee2 commit b4d7fa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_valkey/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import functools
44
import inspect
55
import logging
6-
from asyncio import iscoroutinefunction
76
from collections.abc import AsyncGenerator, Callable, Iterator
7+
from inspect import iscoroutinefunction
88
from typing import (
99
Any,
1010
TypeVar,

0 commit comments

Comments
 (0)