note intentionally non-abstract method

This commit is contained in:
Jan Petykiewicz 2024-07-28 23:20:47 -07:00
parent cae970e65c
commit 8061d6cd37

View File

@ -65,7 +65,7 @@ class Record(Generic[II, OO], metaclass=ABCMeta):
if cls.expected_size is not None and size != cls.expected_size:
raise KlamathError(f'Expected size {cls.expected_size}, got {size}')
@classmethod
@classmethod # noqa: B027 Intentionally non-abstract
def check_data(cls: type[Self], data: II) -> None:
pass