def __iter__()

in src/azstoragetorch/datasets.py [0:0]


    def __iter__(self) -> Iterator[Blob]:
        blob_clients = self._blob_client_factory.yield_blob_clients_from_container_url(
            self._container_url, prefix=self._prefix
        )
        for blob_client in blob_clients:
            yield Blob(blob_client)