8 lines
124 B
Python
8 lines
124 B
Python
class Image:
|
|
__slots__ = ('hash', )
|
|
|
|
hash: str
|
|
|
|
def __init__(self, hash: str) -> None:
|
|
self.hash = hash
|