Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshhari committed Dec 23, 2024
1 parent 01e0bf2 commit a9e19f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
* text=auto
*.sh text eol=lf
*.sh text eol=lf
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ down:

teardown:
docker compose -f docker-compose.yaml -f $(docker_config_file) down -v

load-dummy-data:
docker compose exec backend bash -c "python manage.py load_dummy_data"

Expand Down
3 changes: 2 additions & 1 deletion config/settings/deployment.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import base64
import json
import logging

import sentry_sdk
from authlib.jose import JsonWebKey
Expand Down Expand Up @@ -126,6 +127,6 @@
# open id connect
JWKS = JsonWebKey.import_key_set(
json.loads(
base64.b64decode(env("JWKS_BASE64", default=get_jwks_from_file(BASE_DIR)))
base64.b64decode(env("JWKS_BASE64", default=get_jwks_from_file(BASE_DIR))) # noqa F405
)
)

0 comments on commit a9e19f8

Please sign in to comment.