fix(nodes): fix invocation cache clear method args

This commit is contained in:
psychedelicious 2024-03-06 23:16:53 +11:00 committed by Kent Keirsey
parent e24624109e
commit bab20467fb

View File

@ -81,7 +81,7 @@ class MemoryInvocationCache(InvocationCacheBase):
with self._lock:
return self._delete(key)
def clear(self, *args, **kwargs) -> None:
def clear(self) -> None:
with self._lock:
if self._max_cache_size == 0:
return