[mypy] fix type annotations for other/least-recently-used.py (#5811)

This commit is contained in:
Joyce 2021-11-11 03:55:23 +08:00 committed by GitHub
parent e9882e41ba
commit 7e81551d7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,4 @@
import sys
from abc import abstractmethod
from collections import deque
@ -10,7 +9,6 @@ class LRUCache:
key_reference_map = object() # References of the keys in cache
_MAX_CAPACITY: int = 10 # Maximum capacity of cache
@abstractmethod
def __init__(self, n: int):
"""Creates an empty store and map for the keys.
The LRUCache is set the size n.