Skip to content

Commit d4db676

Browse files
committed
rename typing to typings to avoid conflicts
1 parent a967d64 commit d4db676

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed

django_valkey/async_cache/client/default.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
)
1717
from django_valkey.exceptions import ConnectionInterrupted
1818
from django_valkey.util import CacheKey
19-
from django_valkey.typing import KeyT
19+
from django_valkey.typings import KeyT
2020

2121
if TYPE_CHECKING:
2222
from valkey.asyncio.lock import Lock

django_valkey/async_cache/client/herd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from django_valkey.async_cache.client import AsyncDefaultClient
1313
from django_valkey.client.herd import Marker, _is_expired
1414
from django_valkey.exceptions import ConnectionInterrupted
15-
from django_valkey.typing import KeyT
15+
from django_valkey.typings import KeyT
1616

1717
_main_exceptions = (ConnectionError, ResponseError, TimeoutError, socket.timeout)
1818

django_valkey/async_cache/pool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from valkey._parsers.url_parser import to_bool
1010

1111
from django_valkey.base_pool import BaseConnectionFactory
12-
from django_valkey.typing import AsyncDefaultParserT
12+
from django_valkey.typings import AsyncDefaultParserT
1313

1414

1515
class AsyncConnectionFactory(BaseConnectionFactory[AValkey, ConnectionPool]):

django_valkey/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from django.utils.module_loading import import_string
1313

1414
from django_valkey.exceptions import ConnectionInterrupted
15-
from django_valkey.typing import KeyT
15+
from django_valkey.typings import KeyT
1616

1717
if TYPE_CHECKING:
1818
from valkey.lock import Lock

django_valkey/base_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from django_valkey.exceptions import CompressorError
2626
from django_valkey.serializers.pickle import PickleSerializer
2727
from django_valkey.util import CacheKey
28-
from django_valkey.typing import KeyT
28+
from django_valkey.typings import KeyT
2929

3030
if TYPE_CHECKING:
3131
from django_valkey.cache import ValkeyCache

django_valkey/client/sharded.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from django_valkey.client.default import DefaultClient
1414
from django_valkey.exceptions import ConnectionInterrupted
1515
from django_valkey.hash_ring import HashRing
16-
from django_valkey.typing import KeyT
16+
from django_valkey.typings import KeyT
1717

1818

1919
class ShardClient(DefaultClient):

django_valkey/pool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from valkey._parsers.url_parser import to_bool
1010

1111
from django_valkey.base_pool import BaseConnectionFactory
12-
from django_valkey.typing import DefaultParserT
12+
from django_valkey.typings import DefaultParserT
1313

1414
from django_valkey.async_cache.pool import (
1515
AsyncConnectionFactory,
File renamed without changes.

0 commit comments

Comments
 (0)