1
0
Fork 0
This commit is contained in:
Sean Sube 2023-02-13 18:12:40 -06:00
parent 0709c1dbf0
commit f43f793148
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
from logging import getLogger from logging import getLogger
from typing import Any, List from typing import Any, List, Tuple
logger = getLogger(__name__) logger = getLogger(__name__)
class ModelCache: class ModelCache:
cache: List[(str, Any, Any)] cache: List[Tuple[str, Any, Any]]
limit: int limit: int
def __init__(self, limit: int) -> None: def __init__(self, limit: int) -> None: