class Image: __slots__ = ('hash', ) hash: str def __init__(self, hash: str) -> None: self.hash = hash