Frontend created and rewritten a few times, with some backend fixes (#1)

The software is fully operational.
This commit is contained in:
2023-11-08 20:38:40 +00:00
parent ab6b19e538
commit bc67ef5fd1
129 changed files with 3027 additions and 2335 deletions
Executable → Regular
+1 -1
View File
@@ -41,7 +41,7 @@ class LRUCache:
The corresponding item's handle.
"""
# Take from cache or open a new one
for i, (k, f, ts) in enumerate(self.cache):
for i, (k, f, _ts) in enumerate(self.cache): # noqa: B007
if k == key:
self.cache.pop(i)
break