fix(nodes): fix invocation cache ABC typing

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

View File

@ -41,8 +41,9 @@ class InvocationCacheBase(ABC):
"""Clears the cache""" """Clears the cache"""
pass pass
@staticmethod
@abstractmethod @abstractmethod
def create_key(self, invocation: BaseInvocation) -> int: def create_key(invocation: BaseInvocation) -> int:
"""Gets the key for the invocation's cache item""" """Gets the key for the invocation's cache item"""
pass pass