diff --git a/social_core/backends/loginradius.py b/social_core/backends/loginradius.py index 42bd574cf..5aa5fe80a 100644 --- a/social_core/backends/loginradius.py +++ b/social_core/backends/loginradius.py @@ -36,7 +36,7 @@ def request_access_token(self, *args, **kwargs): return self.get_json( params={"token": self.data.get("token"), "secret": self.setting("SECRET")}, *args, - **kwargs + **kwargs, ) def user_data(self, access_token, *args, **kwargs): diff --git a/social_core/backends/untappd.py b/social_core/backends/untappd.py index 924a9d89e..0057a4a73 100644 --- a/social_core/backends/untappd.py +++ b/social_core/backends/untappd.py @@ -76,7 +76,7 @@ def auth_complete(self, *args, **kwargs): response["response"]["access_token"], response=response["response"], *args, - **kwargs + **kwargs, ) def get_user_details(self, response): diff --git a/social_core/pipeline/partial.py b/social_core/pipeline/partial.py index 8925ec699..661e63ae0 100644 --- a/social_core/pipeline/partial.py +++ b/social_core/pipeline/partial.py @@ -36,7 +36,7 @@ def wrapper(strategy, backend, pipeline_index, *args, **kwargs): pipeline_index=pipeline_index, current_partial=current_partial, *args, - **kwargs + **kwargs, ) or {} )