From 134c0b8666ee5e49cb0db066a4313eacdefe315c Mon Sep 17 00:00:00 2001 From: Roy Smart Date: Sat, 13 Dec 2025 10:51:34 -0700 Subject: [PATCH] Fixed `optika.mixins.Printable` to be a child of `abc.ABC`. --- optika/mixins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/optika/mixins.py b/optika/mixins.py index 032da269..636fcbdd 100644 --- a/optika/mixins.py +++ b/optika/mixins.py @@ -35,7 +35,7 @@ def shape(self) -> dict[str, int]: @dataclasses.dataclass(repr=False) -class Printable: +class Printable(abc.ABC): """An object that can be printed.""" @classmethod