Skip to content

Commit

Permalink
fix pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
linglp committed Jan 16, 2025
1 parent 3800b21 commit dca30ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion schematic/utils/security_controller.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"security controller"
# pylint: disable=line-too-long
import logging
from typing import Dict, Union

Expand All @@ -15,7 +17,8 @@
skip_checks=True,
)
jwks_client = PyJWKClient(
uri=syn.authEndpoint + "/oauth2/jwks", headers=syn._generate_headers()
uri=syn.authEndpoint + "/oauth2/jwks",
headers=syn._generate_headers(), # pylint: disable=W0212
)


Expand Down

0 comments on commit dca30ee

Please sign in to comment.