Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions src/expressionatlas/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
Loading