Skip to content

Commit 9adb785

Browse files
authored
Fixed optika.mixins.Printable to be a child of abc.ABC. (#148)
1 parent cdc7a5b commit 9adb785

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

optika/mixins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def shape(self) -> dict[str, int]:
3535

3636

3737
@dataclasses.dataclass(repr=False)
38-
class Printable:
38+
class Printable(abc.ABC):
3939
"""An object that can be printed."""
4040

4141
@classmethod

0 commit comments

Comments
 (0)