diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1ea898e3..1e9a2b09 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/psf/black-pre-commit-mirror - rev: 25.12.0 + rev: 26.1.0 hooks: - id: black - repo: https://github.com/pycqa/isort/ diff --git a/support/fakefront/config.py b/support/fakefront/config.py index 0c405525..3d0d3bb9 100644 --- a/support/fakefront/config.py +++ b/support/fakefront/config.py @@ -127,7 +127,7 @@ def ensure_secret(): endpoint_url=os.environ.get("EXODUS_AWS_ENDPOINT_URL") or None, ) - (_, privkey) = ensure_keypair() + _, privkey = ensure_keypair() secret = json.dumps({"cookie_key": open(privkey).read()})