Fixes incorrect class names in __all__

Changes "Cache" to "Memory".
This commit is contained in:
Toran Bruce Richards
2023-04-09 02:31:51 +01:00
committed by GitHub
parent a34c51bf86
commit d1777e39a8

View File

@@ -37,6 +37,6 @@ def get_memory(cfg, init=False):
__all__ = [
"get_memory",
"LocalCache",
"RedisCache",
"PineconeCache",
"RedisMemory",
"PineconeMemory",
]