From fdec500458bda16bcc14c48296d9e0981a1a7cd1 Mon Sep 17 00:00:00 2001 From: Dima Gerasimov Date: Wed, 14 Aug 2019 23:43:05 +0100 Subject: [PATCH] fix cachew --- bluemaestro/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bluemaestro/__init__.py b/bluemaestro/__init__.py index 5c831e7..4771bec 100755 --- a/bluemaestro/__init__.py +++ b/bluemaestro/__init__.py @@ -32,7 +32,7 @@ class Point(NamedTuple): temp: float -@cachew(db_path=CACHE) +@cachew(cache_path=CACHE) def iter_points(dbs) -> Iterable[Point]: # I guess we can affort keeping them in sorted order points: Set[Point] = set()