Source code for openmnglab.model.shared

from __future__ import annotations

from abc import ABC, abstractmethod


[docs]class IHashIdentifiedElement(ABC): @property @abstractmethod def calculated_hash(self) -> bytes: ...