diff --git a/backend/user/notifications.py b/backend/user/notifications.py index e9b5d12c..a4232255 100644 --- a/backend/user/notifications.py +++ b/backend/user/notifications.py @@ -104,7 +104,7 @@ def get_client(is_dev): auth_key_path = ( f"/app/secrets/notifications/ios{'/dev/apns-dev' if is_dev else '/prod/apns-prod'}.pem" ) - return APNsClient(credentials=auth_key_path, use_sandbox=is_dev) + return APNsClient(auth_key_path, use_sandbox=is_dev) def __init__(self, is_dev=False): try: