def __eq__()

in code/embedding-function/utilities/document_loading/__init__.py [0:0]


    def __eq__(self, other: object) -> bool:
        if isinstance(self, other.__class__):
            return self.loading_strategy == other.loading_strategy
        else:
            return False