Skip to content

Commit

Permalink
AUT-2461: touchups
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleJono committed Nov 28, 2024
1 parent 10a8864 commit afed97d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions authsignal/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ class ActionState(Enum):
CHALLENGE_REQUIRED = "CHALLENGE_REQUIRED"
CHALLENGE_FAILED = "CHALLENGE_FAILED"
CHALLENGE_SUCCEEDED = "CHALLENGE_SUCCEEDED"
REVIEW_REQUIRED = "REVIEW_REQUIRED"
REVIEW_FAILED = "REVIEW_FAILED"
REVIEW_SUCCEEDED = "REVIEW_SUCCEEDED"


class DecimalEncoder(json.JSONEncoder):
Expand Down Expand Up @@ -161,7 +164,7 @@ def update_user(self, user_id: str, attributes: Dict[str, Any]) -> Dict[str, Any

return response.decamelized_content

def delete_user(self, user_id: str) -> Dict[str, Any]:
def delete_user(self, user_id: str):
"""Deletes a user from authsignal
Args:
user_id: A user's id.
Expand Down Expand Up @@ -206,9 +209,7 @@ def enroll_verified_authenticator(

return response.decamelized_content

def delete_authenticator(
self, user_id: str, user_authenticator_id: str
) -> Dict[str, Any]:
def delete_authenticator(self, user_id: str, user_authenticator_id: str):
"""Deletes an authenticator from authsignal
Args:
user_id: A user's id.
Expand Down

0 comments on commit afed97d

Please sign in to comment.