Added all

This commit is contained in:
Will McGugan
2022-12-28 15:50:51 +00:00
parent 8113ff8705
commit 716db2c0d6

View File

@@ -20,6 +20,8 @@ CacheKey = TypeVar("CacheKey")
CacheValue = TypeVar("CacheValue")
DefaultValue = TypeVar("DefaultValue")
__all__ = ["LRUCache", "FIFOCache"]
class LRUCache(Generic[CacheKey, CacheValue]):
"""