fix sieve nameing

This commit is contained in:
Arthur Lu
2025-03-03 22:29:45 +00:00
committed by root
parent d57069856f
commit b28decfc91
3 changed files with 6 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ class Node:
self.next = None
self.prev = None
class SeiveCache(Cache):
class SieveCache(Cache):
def __init__(self, limit: int):
super().__init__(limit)
self.limit = limit # Fix: Store limit properly