def _get_artifact_content()

in scripts/metric_reporter/gcs_client.py [0:0]


    def _get_artifact_content(self, repository: str, artifact_dir: str, file_name: str) -> str:
        blob_name = f"{repository}/{artifact_dir}/{file_name}"
        blob = self._bucket.blob(blob_name)
        content: str = blob.download_as_text()
        return content