1
0
mirror of https://github.com/sjlongland/tornado-gallery.git synced 2025-09-13 08:42:23 +10:00

cache: Derive off Mapping

This commit is contained in:
Stuart Longland 2018-04-09 19:07:16 +10:00
parent a08899ea3a
commit bd68ec956d
Signed by: stuartl
GPG Key ID: 6AA32EFB18079BAA

View File

@ -5,7 +5,7 @@ from collections import Mapping
import logging
class Cache(object):
class Cache(Mapping):
"""
A key-value cache object that expires entries after a period.
"""