From 804e806c676298472c097c5e186f2cae6aa51122 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 16:32:44 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/pre-commit/pre-commit-hooks: v5.0.0 → v6.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v5.0.0...v6.0.0) - [github.com/astral-sh/ruff-pre-commit: v0.8.2 → v0.15.15](https://github.com/astral-sh/ruff-pre-commit/compare/v0.8.2...v0.15.15) --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a832683..8ffdccd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ exclude: '^docs/conf.py' repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: trailing-whitespace - id: check-added-large-files @@ -19,7 +19,7 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.8.2 + rev: v0.15.15 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] From 77a52a8eb900bfb6f344a1e6ef47f2983bf210b6 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 16:34:48 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/expressionatlas/converter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/expressionatlas/converter.py b/src/expressionatlas/converter.py index fcad96a..fe74319 100644 --- a/src/expressionatlas/converter.py +++ b/src/expressionatlas/converter.py @@ -134,7 +134,7 @@ def _get_auth_headers(self) -> dict[str, str]: ) headers.update(dict(aws_request.headers)) except ImportError: - logger.warning("botocore not installed. Cannot use IAM auth. " "Install with: pip install botocore") + logger.warning("botocore not installed. Cannot use IAM auth. Install with: pip install botocore") except Exception as e: logger.warning(f"Failed to sign request: {e}") else: @@ -205,7 +205,7 @@ def convert( if result.get("status") == "error": raise ConverterError(result.get("detail", result.get("error", "Unknown error"))) - logger.info(f"Conversion {'cache hit' if result.get('cache_hit') else 'complete'} " f"for {accession}") + logger.info(f"Conversion {'cache hit' if result.get('cache_hit') else 'complete'} for {accession}") return result except Exception as e: