Skip to content

Commit 0e08bf6

Browse files
fix: Export MemcachedV1KeySanitizationStrategy from memcached store module
The MemcachedV1KeySanitizationStrategy was defined but not exported from the memcached store's __init__.py, causing import errors in tests and user code. Co-authored-by: William Easton <strawgate@users.noreply.github.com>
1 parent b3ab611 commit 0e08bf6

File tree

1 file changed

+2
-2
lines changed
  • key-value/key-value-aio/src/key_value/aio/stores/memcached

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from key_value.aio.stores.memcached.store import MemcachedStore
1+
from key_value.aio.stores.memcached.store import MemcachedStore, MemcachedV1KeySanitizationStrategy
22

3-
__all__ = ["MemcachedStore"]
3+
__all__ = ["MemcachedStore", "MemcachedV1KeySanitizationStrategy"]

0 commit comments

Comments
 (0)