From 0b6782b103861f78242137ced869058118bf7967 Mon Sep 17 00:00:00 2001 From: FableQuentin Date: Thu, 3 Oct 2024 16:25:44 +0200 Subject: [PATCH] customize: self argument was missing in the declaration of the constructor of MyOAuthSettingsHelper class --- docs/customize/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/customize/authentication.md b/docs/customize/authentication.md index 40393bfa..1d4b1b1b 100644 --- a/docs/customize/authentication.md +++ b/docs/customize/authentication.md @@ -618,7 +618,7 @@ from invenio_oauthclient.contrib.settings import OauthSettingsHelper class MyOAuthSettingsHelper(OAuthSettingsHelper): - def __init__(): + def __init__(self): super().__init__( title="my plugin", description="a description",