Skip to content

Commit 3c01790

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent cf3cb24 commit 3c01790

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

social_core/backends/loginradius.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def request_access_token(self, *args, **kwargs):
3737
return self.get_json(
3838
params={"token": self.data.get("token"), "secret": self.setting("SECRET")},
3939
*args,
40-
**kwargs
40+
**kwargs,
4141
)
4242

4343
def user_data(self, access_token, *args, **kwargs):

social_core/backends/untappd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def auth_complete(self, *args, **kwargs):
7676
response["response"]["access_token"],
7777
response=response["response"],
7878
*args,
79-
**kwargs
79+
**kwargs,
8080
)
8181

8282
def get_user_details(self, response):

social_core/pipeline/partial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def wrapper(strategy, backend, pipeline_index, *args, **kwargs):
3636
pipeline_index=pipeline_index,
3737
current_partial=current_partial,
3838
*args,
39-
**kwargs
39+
**kwargs,
4040
)
4141
or {}
4242
)

0 commit comments

Comments
 (0)