From 22c6e7aed8b3435dd248901dbce3e0f27729d265 Mon Sep 17 00:00:00 2001 From: pictuga Date: Sat, 11 Sep 2021 21:39:11 +0200 Subject: [PATCH] cache: fix isort --- morss/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morss/cache.py b/morss/cache.py index 6bc18ac..079a6e5 100644 --- a/morss/cache.py +++ b/morss/cache.py @@ -17,8 +17,8 @@ import os import pickle -import time import threading +import time from collections import OrderedDict CACHE_SIZE = int(os.getenv('CACHE_SIZE', 1000)) # max number of items in cache (default: 1k items)