0

Remove unused imports

This commit is contained in:
Nicolas F
2017-03-24 17:57:37 +01:00
parent b7837a9656
commit 8cf47935e4
4 changed files with 0 additions and 6 deletions

View File

@@ -20,8 +20,6 @@ Each cache class should implement the standard container type interface
attribute.
"""
import functools
import logging
class LRUCache(object):
"""A simple, generic, in-memory LRU cache that implements the standard