From 662ae3ccbcc775ff3c34a1485eee3882fbfb9554 Mon Sep 17 00:00:00 2001 From: Hristo Kapanakov Date: Sat, 19 Jul 2025 21:04:59 +0300 Subject: [PATCH] Fix formatting --- mealie/routes/auth/auth_cache.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mealie/routes/auth/auth_cache.py b/mealie/routes/auth/auth_cache.py index 1cce78feb..96a45ebff 100644 --- a/mealie/routes/auth/auth_cache.py +++ b/mealie/routes/auth/auth_cache.py @@ -1,5 +1,6 @@ import time + class AuthCache: def __init__(self, threshold=500, default_timeout=300): self.default_timeout = default_timeout @@ -46,4 +47,4 @@ class AuthCache: expires, value = self._cache[key] return expires == 0 or expires > time.time() except KeyError: - return False \ No newline at end of file + return False