Skip to content

Commit

Permalink
fix: removed unused class
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalDR committed Feb 18, 2025
1 parent f1d06ec commit 675ca6e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions oldies/satosa/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ class NoBoundEndpointError(Exception):

class NotTrustedFederationError(Exception):
pass

class DPOPValidationError(Exception):
"""
Raised when a DPoP validation error occurs
"""
pass
File renamed without changes.
4 changes: 2 additions & 2 deletions pyeudiw/satosa/default/request_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
from pyeudiw.openid4vp.authorization_request import build_authorization_request_claims
from pyeudiw.satosa.exceptions import HTTPError
from pyeudiw.satosa.interfaces.request_handler import RequestHandlerInterface
from pyeudiw.satosa.utils.dpop import BackendDPoP
from pyeudiw.satosa.utils.response import Response
from pyeudiw.tools.base_logger import BaseLogger


class RequestHandler(RequestHandlerInterface, BackendDPoP):
class RequestHandler(RequestHandlerInterface, BaseLogger):

_REQUEST_OBJECT_TYP = "oauth-authz-req+jwt"
_RESP_CONTENT_TYPE = f"application/{_REQUEST_OBJECT_TYP}"
Expand Down

0 comments on commit 675ca6e

Please sign in to comment.